wok annotate fatback/receipt @ rev 18710
grub2: CVE-2015-8370 fix (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 16 18:01:12 2015 +0100 (2015-12-16) |
parents | 877323c753e7 |
children | 86790a278e70 |
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@17458 | 10 WEB_SITE="http://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 } |