diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/cmake | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/cmake')
-rw-r--r-- | main/cmake/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/main/cmake/APKBUILD b/main/cmake/APKBUILD new file mode 100644 index 0000000000..71d74182e8 --- /dev/null +++ b/main/cmake/APKBUILD @@ -0,0 +1,35 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=cmake +pkgver=2.6.4 +pkgrel=0 +pkgdesc="CMake is a cross-platform open-source make system" +url="http://www.cmake.org" +license="CMake" +depends="uclibc libgcc g++ ncurses" +makedepends="ncurses-dev" +source="http://www.$pkgname.org/files/v2.6/$pkgname-$pkgver.tar.gz" +subpackages="$pkgname-doc" + + +parallel_opt() { + local i n + for i in $MAKEOPTS; do + case "$i" in + -j*) n=${i#-j};; + esac; + done + [ -n "$n" ] && echo "--parallel $n" +} + +build () +{ + cd $startdir/src/$pkgname-$pkgver + ./bootstrap --prefix=/usr \ + --mandir=/share/man \ + --docdir=/share/cmake-2.6/doc \ + $(parallel_opt) + + make || return 1 + make DESTDIR="$pkgdir" install +} +md5sums="50f387d0436696c4a68b5512a72c9cde cmake-2.6.4.tar.gz" |