core/apr-util/PKGBUILD

27 lines
713 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
2014-05-26 18:55:58 +08:00
pkgver=1.5.3
pkgrel=1
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
options=('!libtool')
license=('APACHE')
source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
2014-05-26 18:55:58 +08:00
md5sums=('6f3417691c7a27090f36e7cf4d94b36e')
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
}