opt/apr/Pkgfile

23 lines
491 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Apache Portable Runtime library
# Maintainer: Juergen Daubert, jue at crux dot nu
# URL: https://apr.apache.org/
# Depends on: util-linux
2006-02-23 16:26:10 +01:00
name=apr
2023-04-18 11:06:39 +02:00
version=1.7.4
2015-04-30 11:36:54 +02:00
release=1
source=(https://downloads.apache.org/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build(){
2023-02-02 11:24:51 +01:00
cd $name-$version
2006-02-23 16:26:10 +01:00
./configure \
--prefix=/usr \
--with-installbuilddir=/usr/share/apr-1
make
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
sed -i -r "/^APR_(SOURCE|BUILD)/s|=.*|=|" $PKG/usr/bin/apr-1-config
rm -r $PKG/usr/lib/*.exp
2006-02-23 16:26:10 +01:00
}