aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-12-21 15:05:52 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-12-21 15:05:52 +0000
commit2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4 (patch)
tree7665e4469e34c01e3c6a9aa043bef7c568743b6d
parent189fcea41c5c15fc4f2d294b0bf60a9cafe83bb2 (diff)
downloadalpine_aports-2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4.tar.bz2
alpine_aports-2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4.tar.xz
alpine_aports-2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4.zip
testing/agg: minor cleanup and build fix
-rw-r--r--testing/agg/APKBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/agg/APKBUILD b/testing/agg/APKBUILD
index 1f4831b133..5ec08625d7 100644
--- a/testing/agg/APKBUILD
+++ b/testing/agg/APKBUILD
@@ -6,8 +6,8 @@ pkgrel=0
6pkgdesc="A Rendering Engine for C++" 6pkgdesc="A Rendering Engine for C++"
7url="http://antigrain.org/" 7url="http://antigrain.org/"
8license="GPL" 8license="GPL"
9depends="libx11 freetype sdl" 9depends=
10makedepends="autoconf automake libx11-dev freetype-dev sdl-dev uclibc++-dev" 10makedepends="autoconf automake libtool libx11-dev freetype-dev sdl-dev"
11install= 11install=
12arch="all" 12arch="all"
13subpackages="$pkgname-dev" 13subpackages="$pkgname-dev"
@@ -23,11 +23,11 @@ prepare() {
23 msg "Applying ${i}" 23 msg "Applying ${i}"
24 patch -Np1 -i "$i" || return 1 24 patch -Np1 -i "$i" || return 1
25 done 25 done
26 sh ./autogen.sh || return 1
26} 27}
27 28
28build() { 29build() {
29 cd "$_builddir" 30 cd "$_builddir"
30 sh ./autogen.sh
31 ./configure --prefix=/usr --disable-static || return 1 31 ./configure --prefix=/usr --disable-static || return 1
32 make || return 1 32 make || return 1
33} 33}