blob: 38ab8eadf3c3c1b4ec39ce0184e71cbfc77ecf55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"
|