wok annotate fatback/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 2c8d9c23af1a
children 640a2eba2511
rev   line source
pascal@17458 1 # SliTaz package receipt.
pascal@17458 2
pascal@17458 3 PACKAGE="fatback"
pascal@17458 4 VERSION="1.3"
pascal@17458 5 CATEGORY="misc"
pascal@17458 6 SHORT_DESC="A *nix tool for recovering files from FAT file systems."
pascal@17458 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17458 8 LICENSE="GPL2"
pascal@17458 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/fatback/"
pascal@17458 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@17458 12
pascal@17739 13 BUILD_DEPENDS="flex autoconf automake libtool"
pascal@17458 14
pascal@17458 15 # Rules to configure and make the package.
pascal@17458 16 compile_rules()
pascal@17458 17 {
pascal@17739 18 autoreconf -i
pascal@17458 19 ./configure --prefix=/usr \
pascal@17458 20 $CONFIGURE_ARGS &&
pascal@17458 21 make &&
pascal@17458 22 make DESTDIR=$DESTDIR install
pascal@17458 23 }
pascal@17458 24
pascal@17458 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17458 26 genpkg_rules()
pascal@17458 27 {
pascal@17458 28 mkdir -p $fs/usr/
pascal@17458 29 cp -a $install/usr/bin $fs/usr/
pascal@17458 30 }