wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="cabextract"
4 VERSION="1.9"
5 CATEGORY="utilities"
6 TAGS="extract cab exe"
7 SHORT_DESC="Extracting Microsoft cabinet files"
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.cabextract.org.uk/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://www.cabextract.org.uk/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }