12345678910111213141516171819202122232425262728293031323334353637 |
- # Tanım: HFS/HFS + kullanıcı alanı etiketleri
- # URL: http://www.opensource.apple.com/
- # Paketçi: milisarge
- # Gerekler: libbsd openssl
- # Grup: sistem
- isim=hfsprogs
- surum=332.25
- devir=1
- kaynak=(http://ftp.de.debian.org/debian/pool/main/h/hfsprogs/${isim}_${surum}.orig.tar.gz
- http://ftp.de.debian.org/debian/pool/main/h/hfsprogs/${isim}_${surum}-11.debian.tar.gz
- license
- makefile.patch)
- derle() {
- cd diskdev_cmds-${surum}
- for patch in ../debian/patches/*.patch ../makefile.patch
- do
- patch -Np1 -i ${patch}
- done
- make -f Makefile.lnx
- install -m 755 -d ${PKG}/usr/bin
- install -m 755 -d ${PKG}/usr/share/licenses/${isim}
- install -m 755 -d ${PKG}/usr/share/${isim}
- install -m 755 -d ${PKG}/usr/share/man/man8/
- install -m 644 ../license ${PKG}/usr/share/licenses/${isim}/APSL
- install -m 755 newfs_hfs.tproj/newfs_hfs ${PKG}/usr/bin/mkfs.hfsplus
- install -m 755 fsck_hfs.tproj/fsck_hfs ${PKG}/usr/bin/fsck.hfsplus
- install -m 644 newfs_hfs.tproj/hfsbootdata.img ${PKG}/usr/share/${NAME}/hfsbootdata
- install -m 644 newfs_hfs.tproj/newfs_hfs.8 ${PKG}/usr/share/man/man8/mkfs.hfsplus.8
- install -m 644 fsck_hfs.tproj/fsck_hfs.8 ${PKG}/usr/share/man/man8/fsck.hfsplus.8
- }
|