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