mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:17:13 +08:00
36 lines
994 B
Bash
36 lines
994 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=apr-util
|
|
pkgver=1.3.12
|
|
pkgrel=3
|
|
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=('2aeddb384b03f3f73107770724d5c97b')
|
|
|
|
md5sums=('0f671b037ca62751a8a7005578085560')
|
|
|
|
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
|
|
}
|