contrib/hfsutils/Pkgfile

40 lines
807 B
Plaintext
Raw Normal View History

2023-08-14 22:06:23 +02:00
# Description: utils for accessing the Macintosh Hierarchical File System
2019-09-03 07:52:11 +02:00
# URL: https://www.mars.org/home/rob/proj/hfs/
2023-08-14 22:06:23 +02:00
# Maintainer: UNMAINTAINED
2019-09-03 07:52:11 +02:00
name=hfsutils
version=3.2.6
release=1
source=(ftp://ftp.mars.org/pub/hfs/$name-$version.tar.gz
hfsutils-3.2.6-errno.patch
hfsutils-3.2.6-fix-tcl-8.6.patch
largerthan2gb.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/hfsutils-3.2.6-errno.patch
patch -p1 -i $SRC/hfsutils-3.2.6-fix-tcl-8.6.patch
patch -p0 -i $SRC/largerthan2gb.patch
./configure \
--prefix=/usr
make
make -C hfsck
install -d \
$PKG/usr/bin \
$PKG/usr/share/man/man1 \
$PKG/usr/share/info
make \
prefix=$PKG/usr \
MANDEST=$PKG/usr/share/man \
infodir=$PKG/usr/share/info \
install
install -m 0755 hfsck/hfsck $PKG/usr/bin/
rm -r $PKG/usr/share/info
2019-09-03 07:52:11 +02:00
}