wok annotate cabextract/receipt @ rev 17002

linux-cloop, cloop-utils: add cloop_suspend & create_compressed_fs_fast
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 12 09:06:13 2014 +0200 (2014-08-12)
parents 15d65b02ff30
children a78610b2eb47
rev   line source
erjo@755 1 # SliTaz package receipt.
erjo@755 2
erjo@755 3 PACKAGE="cabextract"
slaxemulator@11075 4 VERSION="1.4"
erjo@755 5 CATEGORY="utilities"
erjo@755 6 SHORT_DESC="Extracting Microsoft cabinet files"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15579 8 LICENSE="GPL3"
erjo@755 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@755 10 WEB_SITE="http://www.cabextract.org.uk/"
erjo@755 11 WGET_URL="http://www.cabextract.org.uk/$TARBALL"
jozee@4933 12 TAGS="extract cab exe"
erjo@755 13
erjo@755 14 # Rules to configure and make the package.
erjo@755 15 compile_rules()
erjo@755 16 {
erjo@755 17 cd $src
slaxemulator@11075 18 ./configure $CONFIGURE_ARGS &&
slaxemulator@11075 19 make &&
slaxemulator@11075 20 make DESTDIR=$DESTDIR install
erjo@755 21 }
erjo@755 22
erjo@755 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@755 24 genpkg_rules()
erjo@755 25 {
erjo@755 26 mkdir -p $fs/usr
slaxemulator@11075 27 cp -a $install/usr/bin $fs/usr
erjo@755 28 }
erjo@755 29