talimat 595 B

1234567891011121314151617181920212223
  1. # Tanım: Dosya hiyeraşileri oluşturma ve doğrulama uygulaması
  2. # URL: https://github.com/archiecobbs/mtree-port
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: sistem
  6. isim=mtree
  7. _isim=mtree-port
  8. surum=1.0.4
  9. devir=1
  10. kaynak=(https://github.com/archiecobbs/mtree-port/archive/$surum.tar.gz)
  11. derle() {
  12. cd "${SRC}/${_isim}-${surum}"
  13. ./autogen.sh
  14. ./configure --prefix=/usr
  15. make
  16. cd "${SRC}/${_isim}-${surum}"
  17. install -Dm755 mtree "${PKG}"/usr/bin/mtree
  18. install -Dm644 mtree.8 "${PKG}"/usr/share/man/man8/mtree.8
  19. install -Dm644 COPYING "${PKG}"/usr/share/licenses/"${isim}"/COPYING
  20. }