core/apr/PKGBUILD

36 lines
816 B
Bash
Raw Normal View History

2014-05-26 18:55:44 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4ATgmailDOTcom>
2010-03-28 23:00:40 +08:00
pkgname=apr
2015-05-26 06:00:03 +08:00
pkgver=1.5.2
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=('util-linux')
2010-03-28 23:00:40 +08:00
license=('APACHE')
2015-05-26 06:00:03 +08:00
source=(http://www.apache.org/dist/apr/apr-$pkgver.tar.bz2{,.asc})
md5sums=('4e9769f3349fe11fc0a5e1b224c236aa'
'SKIP')
validpgpkeys=('5B5181C2C0AB13E59DA3F7A3EC582EB639FF092C') # Jeff Trawick
2010-03-28 23:00:40 +08:00
build() {
cd "${srcdir}/apr-${pkgver}"
2010-03-28 23:00:40 +08:00
./configure --prefix=/usr --includedir=/usr/include/apr-1 \
--with-installbuilddir=/usr/share/apr-1/build \
--enable-nonportable-atomics \
2015-05-26 06:00:03 +08:00
--with-devrandom=/dev/urandom --disable-static
make
}
check() {
cd "${srcdir}/apr-${pkgver}"
make -j1 check
}
package() {
cd "${srcdir}/apr-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-28 23:00:40 +08:00
}