talimat 427 B

12345678910111213141516171819
  1. # Tanım: Ayar dosyalarını ayrıştıran C kütüphanesi
  2. # URL: https://github.com/martinh/libconfuse
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: kütüphane
  6. isim=confuse
  7. surum=3.2.1
  8. devir=1
  9. kaynak=(https://github.com/martinh/libconfuse/releases/download/v3.2.1/confuse-$surum.tar.gz)
  10. derle() {
  11. cd "${SRC}/${isim}-${surum}"
  12. ./configure --prefix=/usr --enable-shared
  13. make
  14. make check
  15. make DESTDIR="${PKG}" install
  16. }