wok-4.x view unshield/receipt @ rev 781

unshield: set SHORT_DESC
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 13 00:07:58 2008 +0200 (2008-05-13)
parents fab97211d72f
children cb0007fda782
line source
1 # SliTaz package receipt.
3 PACKAGE="unshield"
4 VERSION="0.5"
5 CATEGORY="utilities"
6 SHORT_DESC="extract files from InstallShield CAB archive"
7 MAINTAINER="Erjo <erjo@slitaz.org>"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://kent.dl.sourceforge.net/sourceforge/synce/"
10 WGET_URL="http://kent.dl.sourceforge.net/sourceforge/synce/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }