2014-05-26 18:55:58 +08:00
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4ATgmailDOTcom>
|
2010-03-28 23:00:40 +08:00
|
|
|
|
|
|
|
pkgname=apr-util
|
2015-05-29 05:38:43 +08:00
|
|
|
pkgver=1.5.4
|
2014-05-26 18:55:58 +08:00
|
|
|
pkgrel=1
|
2010-03-28 23:00:40 +08:00
|
|
|
pkgdesc="The Apache Portable Runtime"
|
2012-12-17 00:59:46 +08:00
|
|
|
arch=('x86_64')
|
2010-03-28 23:00:40 +08:00
|
|
|
url="http://apr.apache.org/"
|
2011-07-19 23:15:34 +08:00
|
|
|
depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc')
|
2010-03-28 23:00:40 +08:00
|
|
|
license=('APACHE')
|
|
|
|
source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
|
2015-05-29 05:38:43 +08:00
|
|
|
md5sums=('2202b18f269ad606d70e1864857ed93c')
|
2011-07-19 23:15:34 +08:00
|
|
|
|
2010-03-28 23:00:40 +08:00
|
|
|
build() {
|
2011-07-19 23:15:34 +08:00
|
|
|
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 --with-ldap
|
|
|
|
make
|
|
|
|
}
|
2010-03-28 23:00:40 +08:00
|
|
|
|
2011-07-19 23:15:34 +08:00
|
|
|
package() {
|
|
|
|
cd "${srcdir}/apr-util-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2010-03-28 23:00:40 +08:00
|
|
|
}
|