mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
692 B
Bash
25 lines
692 B
Bash
|
# ARM Maintaner: Krzysztof Warzecha <kwarzecha7@gmail.com>
|
||
|
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
|
||
|
|
||
|
pkgname=apr-util
|
||
|
pkgver=1.3.9
|
||
|
pkgrel=1
|
||
|
pkgdesc="The Apache Portable Runtime"
|
||
|
arch=('arm')
|
||
|
url="http://apr.apache.org/"
|
||
|
depends=('apr' 'gdbm' 'expat' 'db')
|
||
|
options=('!libtool')
|
||
|
license=('APACHE')
|
||
|
source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
|
||
|
md5sums=('29dd557f7bd891fc2bfdffcfa081db59')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/apr-util-${pkgver}
|
||
|
|
||
|
./configure --prefix=/usr --with-apr=/usr \
|
||
|
--without-pgsql --without-mysql --without-sqlite2 --without-sqlite3 \
|
||
|
--with-berkeley-db=/usr --with-gdbm=/usr --without-ldap
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|