wok view hfsutils/receipt @ rev 18217

Add hfsutils
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 17 21:36:53 2015 +0200 (2015-07-17)
parents
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="hfsutils"
4 VERSION="3.2.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="HFS Filesystem user space tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.mars.org/home/rob/proj/hfs/"
11 WGET_URL="ftp://ftp.mars.org/pub/hfs/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 mkdir -p $DESTDIR/usr/bin $DESTDIR/usr/share/man/man1
17 sed -i "s|DEST =.|&$DESTDIR|" Makefile.in
18 ./configure --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs//usr
28 cp -a $install/usr/bin $fs/usr
29 }