wok annotate cabextract/receipt @ rev 13471

libmtp: Add udev rules
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Oct 08 21:39:08 2012 +0200 (2012-10-08)
parents 02bbaa9d12ba
children eb8067417980
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"
erjo@755 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@755 9 WEB_SITE="http://www.cabextract.org.uk/"
erjo@755 10 WGET_URL="http://www.cabextract.org.uk/$TARBALL"
jozee@4933 11 TAGS="extract cab exe"
erjo@755 12
erjo@755 13 # Rules to configure and make the package.
erjo@755 14 compile_rules()
erjo@755 15 {
erjo@755 16 cd $src
slaxemulator@11075 17 ./configure $CONFIGURE_ARGS &&
slaxemulator@11075 18 make &&
slaxemulator@11075 19 make DESTDIR=$DESTDIR install
erjo@755 20 }
erjo@755 21
erjo@755 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@755 23 genpkg_rules()
erjo@755 24 {
erjo@755 25 mkdir -p $fs/usr
slaxemulator@11075 26 cp -a $install/usr/bin $fs/usr
erjo@755 27 }
erjo@755 28