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/apr-util | |
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/apr-util')
-rw-r--r-- | main/apr-util/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/main/apr-util/APKBUILD b/main/apr-util/APKBUILD new file mode 100644 index 000000000..38ab8eadf --- /dev/null +++ b/main/apr-util/APKBUILD @@ -0,0 +1,32 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=apr-util +pkgver=1.3.7 +pkgrel=0 +pkgdesc="The Apache Portable Runtime" +url="http://apr.apache.org/" +license="APACHE" +depends= +subpackages="$pkgname-dev" +makedepends="apr-dev expat-dev e2fsprogs-dev" +source="http://www.apache.org/dist/apr/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr \ + --with-apr=/usr \ + --without-pgsql \ + --without-mysql \ + --without-sqlite2 \ + --without-sqlite3 \ + --without-berkeley-db \ + --without-gdbm \ + --without-ldap-lib + + make || return 1 + make DESTDIR="$pkgdir" install + + # we dont need this one + rm "$pkgdir"/usr/lib/*.exp +} + +md5sums="2ed3ae6734290296faa193e1177d50e6 apr-util-1.3.7.tar.bz2" |