diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-16 13:33:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-17 08:59:37 +0000 |
commit | 74a4f279e7fdab5d27a3800915cec3d6f24a4861 (patch) | |
tree | 3ac559327d04a05664a5eea3ebc02fbcd5f3573e /main/glu/APKBUILD | |
parent | 57b2b83e34574928ece1bb3b1c349921e2ee27e7 (diff) | |
download | aports-74a4f279e7fdab5d27a3800915cec3d6f24a4861.tar.bz2 aports-74a4f279e7fdab5d27a3800915cec3d6f24a4861.tar.xz |
main/glu: moved from testing
Diffstat (limited to 'main/glu/APKBUILD')
-rw-r--r-- | main/glu/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/main/glu/APKBUILD b/main/glu/APKBUILD new file mode 100644 index 0000000000..471f8e4958 --- /dev/null +++ b/main/glu/APKBUILD @@ -0,0 +1,41 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=glu +pkgver=9.0.0 +pkgrel=0 +pkgdesc="Mesa OpenGL Utility library" +url="http://cgit.freedesktop.org/mesa/glu/" +arch="all" +license="LGPL" +depends="" +depends_dev="mesa-dev" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev" +source="ftp://ftp.freedesktop.org/pub/mesa/glu/glu-$pkgver.tar.bz2" + +_builddir="$srcdir"/glu-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --disable-static \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="be9249132ff49275461cf92039083030 glu-9.0.0.tar.bz2" |