wok view unshield/receipt @ rev 13479

grooms: chown to www
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 10 15:15:42 2012 +0200 (2012-10-10)
parents 52dc4b48ed81
children 23c3aed67cd9
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"
13 TAGS="windows exe cab"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }