mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:37:14 +08:00
26 lines
692 B
Bash
26 lines
692 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4ATgmailDOTcom>
|
|
|
|
pkgname=apr-util
|
|
pkgver=1.5.4
|
|
pkgrel=2
|
|
pkgdesc="The Apache Portable Runtime"
|
|
arch=('x86_64')
|
|
url="http://apr.apache.org/"
|
|
depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc')
|
|
license=('APACHE')
|
|
source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
|
|
md5sums=('2202b18f269ad606d70e1864857ed93c')
|
|
|
|
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
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/apr-util-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|