wok annotate hfsprescue/receipt @ rev 18180

busybox: add /bin/ip
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 05 16:27:51 2015 +0200 (2015-07-05)
parents
children df58e6c974a3
rev   line source
pascal@16073 1 # SliTaz package receipt.
pascal@16073 2
pascal@16073 3 PACKAGE="hfsprescue"
pascal@16073 4 VERSION="0.3"
pascal@16073 5 CATEGORY="base-system"
pascal@16073 6 SHORT_DESC="HFS+ recovery tool."
pascal@16073 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16073 8 LICENSE="GPL2"
pascal@16073 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@16073 10 WEB_SITE="http://www.plop.at/en/hfsprescue.html"
pascal@16073 11 WGET_URL="http://download.plop.at/files/$PACKAGE/$TARBALL"
pascal@16073 12
pascal@16073 13 DEPENDS="gcc-lib-base"
pascal@16073 14 BUILD_DEPENDS=""
pascal@16073 15
pascal@16073 16 # Rules to configure and make the package.
pascal@16073 17 compile_rules()
pascal@16073 18 {
pascal@16073 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@16073 20 --mandir=/usr/share/man \
pascal@16073 21 $CONFIGURE_ARGS &&
pascal@16073 22 make &&
pascal@16073 23 make DESTDIR=$DESTDIR install
pascal@16073 24 }
pascal@16073 25
pascal@16073 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16073 27 genpkg_rules()
pascal@16073 28 {
pascal@16073 29 mkdir -p $fs/usr
pascal@16073 30 cp -a $install/usr/bin $fs/usr
pascal@16073 31 }
pascal@16073 32