wok annotate unshield/receipt @ rev 1125

Add: get and install java runtime.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Jul 22 01:08:56 2008 +0200 (2008-07-22)
parents cb0007fda782
children 3d99ecce2d4b
rev   line source
erjo@755 1 # SliTaz package receipt.
erjo@755 2
erjo@755 3 PACKAGE="unshield"
erjo@755 4 VERSION="0.5"
erjo@755 5 CATEGORY="utilities"
pankso@783 6 SHORT_DESC="Extract files from InstallShield CAB archive."
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@755 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@755 9 WEB_SITE="http://kent.dl.sourceforge.net/sourceforge/synce/"
erjo@755 10 WGET_URL="http://kent.dl.sourceforge.net/sourceforge/synce/$TARBALL"
erjo@755 11
erjo@755 12 # Rules to configure and make the package.
erjo@755 13 compile_rules()
erjo@755 14 {
erjo@755 15 cd $src
erjo@755 16 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@755 17 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@755 18 make
erjo@755 19 make DESTDIR=$PWD/_pkg install
erjo@755 20 }
erjo@755 21
erjo@755 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@755 23 genpkg_rules()
erjo@755 24 {
erjo@755 25 mkdir -p $fs/usr/lib
erjo@755 26 cp -a $_pkg/usr/bin $fs/usr
erjo@755 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@755 28 }
erjo@755 29