wok-6.x diff pngrewrite/receipt @ rev 21619
gcc83-lib-base: revert to gcc-lib-base post install
Previous post-install rules don't work for me producing error:
error: C compiler cannot create executables
on the another plain build when I previously used gcc83 & gcc83-lib-base to compile my other package
Previous post-install rules don't work for me producing error:
error: C compiler cannot create executables
on the another plain build when I previously used gcc83 & gcc83-lib-base to compile my other package
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat May 25 14:09:45 2019 +0300 (2019-05-25) |
parents | |
children | 453c249b6219 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/pngrewrite/receipt Sat May 25 14:09:45 2019 +0300 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="pngrewrite" 1.7 +VERSION="1.4.0" 1.8 +CATEGORY="graphics" 1.9 +SHORT_DESC="Utility to reduce unnecessarily large palettes and bit depths in PNG image files" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="zlib/libpng" 1.12 +WEB_SITE="http://entropymine.com/jason/pngrewrite/" 1.13 +TARBALL="$PACKAGE-$VERSION.zip" 1.14 +WGET_URL="${WEB_SITE}$TARBALL" 1.15 + 1.16 +DEPENDS="libpng" 1.17 +BUILD_DEPENDS="libpng-dev zlib-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + make 1.23 + 1.24 + mkdir -p $install/usr/bin 1.25 + cp -a $src/pngrewrite $install/usr/bin 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + cp -a $install/* $fs 1.32 +}