1234567891011121314151617181920212223 |
- # Tanım: Dosya hiyeraşileri oluşturma ve doğrulama uygulaması
- # URL: https://github.com/archiecobbs/mtree-port
- # Paketçi: milisarge
- # Gerekler:
- # Grup: sistem
- isim=mtree
- _isim=mtree-port
- surum=1.0.4
- devir=1
- kaynak=(https://github.com/archiecobbs/mtree-port/archive/$surum.tar.gz)
- derle() {
- cd "${SRC}/${_isim}-${surum}"
- ./autogen.sh
- ./configure --prefix=/usr
- make
- cd "${SRC}/${_isim}-${surum}"
- install -Dm755 mtree "${PKG}"/usr/bin/mtree
- install -Dm644 mtree.8 "${PKG}"/usr/share/man/man8/mtree.8
- install -Dm644 COPYING "${PKG}"/usr/share/licenses/"${isim}"/COPYING
- }
|