wok annotate cabextract/receipt @ rev 21939

updated dotconf and dotconf-dev again (1.0.13 -> 1.3)
author Hans-G?nter Theisgen
date Tue Oct 08 10:51:09 2019 +0100 (2019-10-08)
parents a78610b2eb47
children b2c3caa4e31c
rev   line source
erjo@755 1 # SliTaz package receipt.
erjo@755 2
erjo@755 3 PACKAGE="cabextract"
Hans-G?nter@20758 4 VERSION="1.9"
erjo@755 5 CATEGORY="utilities"
Hans-G?nter@20758 6 TAGS="extract cab exe"
erjo@755 7 SHORT_DESC="Extracting Microsoft cabinet files"
erjo@784 8 MAINTAINER="erjo@slitaz.org"
pascal@15579 9 LICENSE="GPL3"
Hans-G?nter@20758 10 WEB_SITE="https://www.cabextract.org.uk/"
Hans-G?nter@20758 11
erjo@755 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20669 13 WGET_URL="https://www.cabextract.org.uk/$TARBALL"
erjo@755 14
erjo@755 15 # Rules to configure and make the package.
erjo@755 16 compile_rules()
erjo@755 17 {
erjo@755 18 cd $src
slaxemulator@11075 19 ./configure $CONFIGURE_ARGS &&
slaxemulator@11075 20 make &&
slaxemulator@11075 21 make DESTDIR=$DESTDIR install
erjo@755 22 }
erjo@755 23
erjo@755 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@755 25 genpkg_rules()
erjo@755 26 {
erjo@755 27 mkdir -p $fs/usr
slaxemulator@11075 28 cp -a $install/usr/bin $fs/usr
erjo@755 29 }