mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
664 B
Bash
26 lines
664 B
Bash
|
# ARM Maintaner: Krzysztof Warzecha <kwarzecha7@gmail.com>
|
||
|
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
|
||
|
|
||
|
pkgname=apr
|
||
|
pkgver=1.3.8
|
||
|
pkgrel=1
|
||
|
pkgdesc="The Apache Portable Runtime"
|
||
|
arch=('arm')
|
||
|
url="http://apr.apache.org/"
|
||
|
depends=('e2fsprogs')
|
||
|
options=('!libtool')
|
||
|
license=('APACHE')
|
||
|
source=("http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2")
|
||
|
md5sums=('3c7e3a39ae3d3573f49cb74e2dbf87a2')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/apr-${pkgver}
|
||
|
|
||
|
./configure --prefix=/usr --includedir=/usr/include/apr-1 \
|
||
|
--with-installbuilddir=/usr/share/apr-1/build \
|
||
|
--enable-nonportable-atomics \
|
||
|
--with-devrandom=/dev/urandom
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|