blob: 0ef2016a91d6f2cdf43343885e9f51a3e1ab9e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DESCRIPTION = "HFS plus file system utilities"
SECTION = "base"
LICENSE = "GPL"
FILE_PR = "r1"
S="${WORKDIR}/${P}"
inherit kernel-arch autotools pkgconfig
DEPENDS = " rpm2cpio-native"
SRC_URI = "http://penguinppc.org/historical/hfsplus/hfsplusutils-1.0.4-4.src.rpm \
file://hfsplusutils-1.0.4-errno.patch;patch=1 \
file://hfsplusutils-1.0.4-gcc4.patch;patch=1 \
file://hfsplusutils-1.0.4-glob.patch;patch=1 \
file://hfsplusutils-1.0.4-string.patch;patch=1 \
"
do_unpack() {
if ! test -f hfsplus.tz2 ; then
rpm2cpio.pl ${DL_DIR}/${P}.src.rpm | cpio -i --make-directories
bunzip2 hfsplus.tz2
tar -xf hfsplus.tz2.out
mv hfsplus ${P}
fi
}
|