wok diff gpicview/receipt @ rev 16012
syslinux/iso2exe: access both local and isofs namespaces
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Mar 04 21:00:29 2014 +0000 (2014-03-04) |
parents | 4884337b6445 |
children | 523db8f94fcb |
line diff
1.1 --- a/gpicview/receipt Sat Jan 29 20:06:12 2011 +0000 1.2 +++ b/gpicview/receipt Tue Mar 04 21:00:29 2014 +0000 1.3 @@ -5,14 +5,16 @@ 1.4 CATEGORY="graphics" 1.5 SHORT_DESC="Light pictures viewer." 1.6 MAINTAINER="pankso@slitaz.org" 1.7 +LICENSE="GPL2" 1.8 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 +WEB_SITE="http://lxde.sourceforge.net/gpicview/" 1.10 +WGET_URL="$SF_MIRROR/lxde/$TARBALL" 1.11 + 1.12 DEPENDS="glibc-base expat glib libgio zlib fontconfig freetype \ 1.13 gtk+ atk cairo pango pixman jpeg libpng libxcb xcb-util \ 1.14 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdamage \ 1.15 xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender" 1.16 BUILD_DEPENDS="gtk+-dev xorg-dev intltool" 1.17 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://lxde.sourceforge.net/gpicview/" 1.19 -WGET_URL="$SF_MIRROR/lxde/$TARBALL" 1.20 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 @@ -23,14 +25,14 @@ 1.24 --mandir=/usr/share/man \ 1.25 $CONFIGURE_ARGS && 1.26 make && 1.27 - make DESTDIR=$PWD/_pkg install 1.28 + make DESTDIR=$DESTDIR install 1.29 } 1.30 1.31 # Rules to gen a SliTaz package suitable for Tazpkg. 1.32 genpkg_rules() 1.33 { 1.34 mkdir -p $fs/usr/share 1.35 - cp -a $_pkg/usr/bin $fs/usr 1.36 - cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 1.37 + cp -a $install/usr/bin $fs/usr 1.38 + cp -a $install/usr/share/$PACKAGE $fs/usr/share 1.39 } 1.40