21 lines
415 B
Plaintext
21 lines
415 B
Plaintext
|
# Description: Apache Portable Runtime Utility Library
|
||
|
# URL: http://apr.apache.org/
|
||
|
# Packager: jmilot at nutyx dot org
|
||
|
# Depends on: apr expat
|
||
|
name=apr-util
|
||
|
version=1.5.4
|
||
|
release=1
|
||
|
|
||
|
source=(http://archive.apache.org/dist/apr/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--with-apr=/usr \
|
||
|
--with-gdbm=/usr \
|
||
|
--with-openssl=/usr \
|
||
|
--with-crypto
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|