talimat 448 B

123456789101112131415161718192021
  1. # Tanım: POSIX yetenekleri ile programlamayı geleneksel libcap'tan daha kolay hale getiren bir kütüphane.
  2. # URL: http://people.redhat.com/sgrubb/libcap-ng/
  3. # Paketçi: milisarge
  4. # Gerekler: glibc
  5. # Grup: kütüphane
  6. isim=libcap-ng
  7. surum=0.7.7
  8. devir=1
  9. kaynak=(http://people.redhat.com/sgrubb/$isim/$isim-$surum.tar.gz)
  10. derle() {
  11. cd $isim-$surum
  12. ./configure --prefix=/usr \
  13. --disable-static \
  14. --without-python
  15. make
  16. make DESTDIR=$PKG install
  17. }