talimat 433 B

123456789101112131415161718192021
  1. # Description: Apache taşınabilir çalışma zamanı yardımcı program kütüphanesi
  2. # URL: http://apr.apache.org/
  3. # Packager: milisarge
  4. # Depends on: apr expat
  5. name=apr-util
  6. version=1.5.4
  7. release=1
  8. source=(http://archive.apache.org/dist/apr/$name-$version.tar.bz2)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr \
  12. --with-apr=/usr \
  13. --with-gdbm=/usr \
  14. --with-openssl=/usr \
  15. --with-crypto
  16. make
  17. make DESTDIR=$PKG install
  18. }