wok diff unshield/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 6135577f4d08
children 5ea0ce1cecc0
line diff
     1.1 --- a/unshield/receipt	Sat Jan 26 12:26:47 2019 +0100
     1.2 +++ b/unshield/receipt	Fri Feb 21 18:28:59 2020 +0100
     1.3 @@ -1,34 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="unshield"
     1.7 -VERSION="0.5"
     1.8 +VERSION="1.4.3"
     1.9  CATEGORY="utilities"
    1.10 +TAGS="windows exe cab"
    1.11  SHORT_DESC="Extract files from InstallShield CAB archive."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="https://github.com/twogood/unshield/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://sourceforge.net/projects/synce/"
    1.18 -WGET_URL="http://kent.dl.sourceforge.net/sourceforge/synce/$TARBALL"
    1.19 -TAGS="windows exe cab"
    1.20 +WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
    1.21  
    1.22  DEPENDS="zlib"
    1.23 -BUILD_DEPENDS="zlib-dev mysql-dev"
    1.24 +BUILD_DEPENDS="cmake zlib-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.31 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.32 -	make &&
    1.33 -	make DESTDIR=$DESTDIR install
    1.34 +	./rebuild.sh
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40  	mkdir -p $fs/usr/lib
    1.41 -	cp -a $install/usr/bin $fs/usr
    1.42 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.43 +
    1.44 +	cp -a $install/var/tmp/$PACKAGE/bin		$fs/usr
    1.45 +	cp -a $install/var/tmp/$PACKAGE/lib/*.so*	$fs/usr/lib
    1.46  }
    1.47 -