wok diff ploticus/receipt @ rev 20011
Add: description.txt and links revision.
author | Leonardo Laporte <hackdorte@yandex.com> |
---|---|
date | Thu Aug 03 07:12:33 2017 -0300 (2017-08-03) |
parents | e97c81ccdba0 |
children | e7c057e9eeda |
line diff
1.1 --- a/ploticus/receipt Sat Apr 11 09:57:12 2009 +0000 1.2 +++ b/ploticus/receipt Thu Aug 03 07:12:33 2017 -0300 1.3 @@ -5,26 +5,27 @@ 1.4 CATEGORY="misc" 1.5 SHORT_DESC="Data display engine." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="GPL" 1.8 SOURCE="pl240src" 1.9 TARBALL="$SOURCE.tar.gz" 1.10 WEB_SITE="http://ploticus.sourceforge.net/" 1.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.12 + 1.13 DEPENDS="zlib xorg libpng" 1.14 -BUILD_DEPENDS="zlib-dev xorg-dev" 1.15 +BUILD_DEPENDS="zlib-dev xorg-dev libpng-dev" 1.16 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 - mv $SOURCE $src 2> /dev/null 1.21 cd $src/src 1.22 make || return 1 1.23 - mkdir -p ../_pkg/usr/bin 1.24 - cp pl ../_pkg/usr/bin 1.25 + mkdir -p $DESTDIR/usr/bin 1.26 + cp pl $DESTDIR/usr/bin 1.27 } 1.28 1.29 # Rules to gen a SliTaz package suitable for Tazpkg. 1.30 genpkg_rules() 1.31 { 1.32 - cp -a $_pkg/usr $fs 1.33 + cp -a $install/usr $fs 1.34 } 1.35