wok view cabextract/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents 15d65b02ff30
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="cabextract"
4 VERSION="1.4"
5 CATEGORY="utilities"
6 SHORT_DESC="Extracting Microsoft cabinet files"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cabextract.org.uk/"
11 WGET_URL="http://www.cabextract.org.uk/$TARBALL"
12 TAGS="extract cab exe"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }