core/apr-util/PKGBUILD

26 lines
692 B
Bash
Raw Normal View History

2014-05-26 18:55:58 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4ATgmailDOTcom>
2010-03-28 23:00:40 +08:00
pkgname=apr-util
pkgver=1.5.4
2016-03-20 19:56:13 +08:00
pkgrel=2
2010-03-28 23:00:40 +08:00
pkgdesc="The Apache Portable Runtime"
arch=('x86_64')
2010-03-28 23:00:40 +08:00
url="http://apr.apache.org/"
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")
md5sums=('2202b18f269ad606d70e1864857ed93c')
2010-03-28 23:00:40 +08:00
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 --with-ldap
make
}
2010-03-28 23:00:40 +08:00
package() {
cd "${srcdir}/apr-util-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-28 23:00:40 +08:00
}