mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:07:12 +08:00
30 lines
761 B
Bash
30 lines
761 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=apr-util
|
|
pkgver=1.4.1
|
|
pkgrel=1
|
|
pkgdesc="The Apache Portable Runtime"
|
|
arch=('i686' 'x86_64')
|
|
url="http://apr.apache.org/"
|
|
depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc')
|
|
options=('!libtool')
|
|
license=('APACHE')
|
|
source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
|
|
md5sums=('52b31b33fb1aa16e65ddaefc76e41151')
|
|
|
|
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
|
|
}
|