2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: HFS/HFS + kullanıcı alanı etiketleri
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://www.opensource.apple.com/
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: libbsd openssl
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
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
|
2016-02-24 01:27:23 +01:00
|
|
|
|
license
|
|
|
|
|
makefile.patch)
|
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd diskdev_cmds-${surum}
|
2016-02-24 01:27:23 +01:00
|
|
|
|
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
|
2017-10-28 14:10:23 +02:00
|
|
|
|
install -m 755 -d ${PKG}/usr/share/licenses/${isim}
|
|
|
|
|
install -m 755 -d ${PKG}/usr/share/${isim}
|
2016-02-24 01:27:23 +01:00
|
|
|
|
install -m 755 -d ${PKG}/usr/share/man/man8/
|
2017-01-31 02:35:21 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
install -m 644 ../license ${PKG}/usr/share/licenses/${isim}/APSL
|
2017-01-31 02:35:21 +01:00
|
|
|
|
|
2016-02-24 01:27:23 +01:00
|
|
|
|
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
|
2017-01-31 02:35:21 +01:00
|
|
|
|
|
2016-02-24 01:27:23 +01:00
|
|
|
|
install -m 644 newfs_hfs.tproj/hfsbootdata.img ${PKG}/usr/share/${NAME}/hfsbootdata
|
2017-01-31 02:35:21 +01:00
|
|
|
|
|
2016-02-24 01:27:23 +01:00
|
|
|
|
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
|
|
|
|
|
}
|