wok view unshield/receipt @ rev 2322

tazusb: use main mirror
author Christophe Lincoln <pankso@slitaz.org>
date Fri Feb 27 22:59:59 2009 +0100 (2009-02-27)
parents 3d99ecce2d4b
children 3115c291f303
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@slitaz.org"
8 DEPENDS="zlib"
9 BUILD_DEPENDS="zlib-dev mysql-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://kent.dl.sourceforge.net/sourceforge/synce/"
12 WGET_URL="http://kent.dl.sourceforge.net/sourceforge/synce/$TARBALL"
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/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }