aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-10-16 13:33:44 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-10-17 08:59:37 +0000
commit74a4f279e7fdab5d27a3800915cec3d6f24a4861 (patch)
tree3ac559327d04a05664a5eea3ebc02fbcd5f3573e /testing
parent57b2b83e34574928ece1bb3b1c349921e2ee27e7 (diff)
downloadaports-74a4f279e7fdab5d27a3800915cec3d6f24a4861.tar.bz2
aports-74a4f279e7fdab5d27a3800915cec3d6f24a4861.tar.xz
main/glu: moved from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/glu/APKBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/glu/APKBUILD b/testing/glu/APKBUILD
deleted file mode 100644
index 471f8e4958..0000000000
--- a/testing/glu/APKBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# 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"