wok annotate hfsutils/receipt @ rev 20255

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