23 lines
491 B
Plaintext
23 lines
491 B
Plaintext
# Description: Apache Portable Runtime library
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# URL: https://apr.apache.org/
|
|
# Depends on: util-linux
|
|
|
|
name=apr
|
|
version=1.7.4
|
|
release=1
|
|
source=(https://downloads.apache.org/$name/$name-$version.tar.bz2)
|
|
|
|
build(){
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-installbuilddir=/usr/share/apr-1
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
sed -i -r "/^APR_(SOURCE|BUILD)/s|=.*|=|" $PKG/usr/bin/apr-1-config
|
|
rm -r $PKG/usr/lib/*.exp
|
|
}
|