123456789101112131415161718192021 |
- # Description: Apache taşınabilir çalışma zamanı yardımcı program kütüphanesi
- # URL: http://apr.apache.org/
- # Packager: milisarge
- # 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
- }
|