diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-21 15:05:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-21 15:05:52 +0000 |
commit | 2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4 (patch) | |
tree | 7665e4469e34c01e3c6a9aa043bef7c568743b6d /testing/agg/APKBUILD | |
parent | 189fcea41c5c15fc4f2d294b0bf60a9cafe83bb2 (diff) | |
download | aports-2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4.tar.bz2 aports-2dcc3fd13df97ebe7b77ab78a8cd1ad3926395d4.tar.xz |
testing/agg: minor cleanup and build fix
Diffstat (limited to 'testing/agg/APKBUILD')
-rw-r--r-- | testing/agg/APKBUILD | 6 |
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 pkgdesc="A Rendering Engine for C++" url="http://antigrain.org/" license="GPL" -depends="libx11 freetype sdl" -makedepends="autoconf automake libx11-dev freetype-dev sdl-dev uclibc++-dev" +depends= +makedepends="autoconf automake libtool libx11-dev freetype-dev sdl-dev" install= arch="all" subpackages="$pkgname-dev" @@ -23,11 +23,11 @@ prepare() { msg "Applying ${i}" patch -Np1 -i "$i" || return 1 done + sh ./autogen.sh || return 1 } build() { cd "$_builddir" - sh ./autogen.sh ./configure --prefix=/usr --disable-static || return 1 make || return 1 } |