wok view unshield/receipt @ rev 20423

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 09 12:16:16 2018 +0200 (2018-08-09)
parents 3115c291f303
children 6135577f4d08
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 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://kent.dl.sourceforge.net/sourceforge/synce/"
11 WGET_URL="http://kent.dl.sourceforge.net/sourceforge/synce/$TARBALL"
12 TAGS="windows exe cab"
14 DEPENDS="zlib"
15 BUILD_DEPENDS="zlib-dev mysql-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }