updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / apr-util-mysql / PKGBUILD
blob519cc0181eb7644db37a585a088328ca74350f7c
1 # Contributor: Daniele Paolella <dp@hostess-promoter.com>
2 pkgname=apr-util-mysql
3 pkgver=1.3.12
4 pkgrel=1
5 pkgdesc="The Apache Portable Runtime with MySQL support"
6 arch=('i686' 'x86_64')
7 url="http://apr.apache.org/"
8 depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc')
9 options=('!libtool')
10 license=('APACHE')
11 provides=("apr-util==$pkgver")
12 conflicts=('apr-util')
13 changelog=ChangeLog
14 source=("http://www.apache.org/dist/apr/apr-util-$pkgver.tar.bz2")
15 md5sums=('0f671b037ca62751a8a7005578085560')
17 build() {
18         cd "$srcdir/apr-util-$pkgver"
19         ./configure --prefix=/usr --with-apr=/usr \
20                 --without-pgsql --with-mysql --without-sqlite2 --without-sqlite3 \
21                 --with-berkeley-db=/usr --with-gdbm=/usr --with-ldap
22         make
25 package() {
26         cd "$srcdir/apr-util-$pkgver"
27         make DESTDIR="$pkgdir/" install
30 # vim:set ts=2 sw=2 et: