wok annotate scalpel/receipt @ rev 16456
squashfs: add lzo support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Apr 19 11:41:39 2014 +0000 (2014-04-19) |
parents | c1ac547a80bf |
children | 7c0170dd3ecc |
rev | line source |
---|---|
pascal@4477 | 1 # SliTaz package receipt. |
pascal@4477 | 2 |
pascal@4477 | 3 PACKAGE="scalpel" |
pascal@4477 | 4 VERSION="1.60" |
pascal@4477 | 5 CATEGORY="system-tools" |
pascal@4477 | 6 SHORT_DESC="Frugal, high performance file carver." |
pascal@4477 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15587 | 8 LICENSE="GPL2" |
pascal@4477 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4477 | 10 WEB_SITE="http://www.digitalforensicssolutions.com/Scalpel" |
pascal@4477 | 11 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@4477 | 12 |
pascal@4477 | 13 # Rules to configure and make the package. |
pascal@4477 | 14 compile_rules() |
pascal@4477 | 15 { |
pascal@4477 | 16 cd $src && make |
pascal@4477 | 17 } |
pascal@4477 | 18 |
pascal@4477 | 19 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4477 | 20 genpkg_rules() |
pascal@4477 | 21 { |
pascal@4477 | 22 mkdir -p $fs/usr/bin $fs/etc |
pascal@4477 | 23 cp -a $src/scalpel $fs/usr/bin |
pascal@4477 | 24 cp -a $src/scalpel.conf $fs/etc |
pascal@4477 | 25 } |
pascal@4477 | 26 |