wok view fatback/receipt @ rev 18722

Up tazpkg(891)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 18 11:41:38 2015 +0200 (2015-12-18)
parents 877323c753e7
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="fatback"
4 VERSION="1.3"
5 CATEGORY="misc"
6 SHORT_DESC="A *nix tool for recovering files from FAT file systems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sourceforge.net/projects/fatback/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="flex autoconf automake libtool"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 autoreconf -i
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/
29 cp -a $install/usr/bin $fs/usr/
30 }