wok view cabextract/receipt @ rev 10469

libgd: use hg to get source
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 25 11:46:22 2011 +0200 (2011-05-25)
parents 828f3da70f8d
children 15d65b02ff30
line source
1 # SliTaz package receipt.
3 PACKAGE="cabextract"
4 VERSION="1.3"
5 CATEGORY="utilities"
6 SHORT_DESC="Extracting Microsoft cabinet files"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
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 --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }