talimat 485 B

123456789101112131415161718192021
  1. # Description: Zip arşivlerini okumak, oluşturmak ve değiştirmek için bir C kütüphanesi
  2. # URL: http://www.nih.at/libzip/index.html
  3. # Packager: milisarge
  4. # Depends on:
  5. name=libzip
  6. version=1.0.1
  7. release=1
  8. source=(http://www.nih.at/$name/$name-$version.tar.xz)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr
  12. make
  13. make DESTDIR=$PKG install
  14. ln -s /usr/lib/libzip/include/zipconf.h $PKG/usr/include/zipconf.h
  15. install -Dm644 LICENSE $PKG/usr/share/licenses/$name/LICENSE
  16. }