wok diff unshield/receipt @ rev 22976
updated jsoncpp again (1.8.4 -> 1.9.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 29 15:39:04 2020 +0100 (2020-02-29) |
parents | 6135577f4d08 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/unshield/receipt Sat Jan 26 12:26:47 2019 +0100 1.2 +++ b/unshield/receipt Sat Feb 29 15:39:04 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 -