wok-6.x diff gnuplot/receipt @ rev 15610
linux64*: fix install/_pkg
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Dec 07 06:59:03 2013 +0000 (2013-12-07) |
parents | 89486daf7a22 |
children | 4665cd0e37ad |
line diff
1.1 --- a/gnuplot/receipt Thu Sep 30 00:14:14 2010 +0000 1.2 +++ b/gnuplot/receipt Sat Dec 07 06:59:03 2013 +0000 1.3 @@ -5,9 +5,11 @@ 1.4 CATEGORY="graphics" 1.5 SHORT_DESC="Command-line driven interactive data and function plotting." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="BSD" 1.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 WEB_SITE="http://www.gnuplot.info/" 1.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.11 + 1.12 DEPENDS="zlib readline ncurses libgd jpeg freetype libpng gcc-lib-base \ 1.13 xorg-libXpm xorg-libX11 xorg-libXau xorg-libXdmcp fontconfig expat wxWidgets \ 1.14 xorg-libXxf86vm" 1.15 @@ -26,14 +28,14 @@ 1.16 --mandir=/usr/share/man \ 1.17 $CONFIGURE_ARGS && 1.18 make && 1.19 - make DESTDIR=$PWD/_pkg install 1.20 + make DESTDIR=$DESTDIR install 1.21 } 1.22 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules() 1.25 { 1.26 mkdir -p $fs/usr/share 1.27 - cp -a $_pkg/usr/bin $fs/usr 1.28 - cp -a $_pkg/usr/lib $fs/usr 1.29 - cp -a $_pkg/usr/share/gnuplot $fs/usr/share 1.30 + cp -a $install/usr/bin $fs/usr 1.31 + cp -a $install/usr/lib $fs/usr 1.32 + cp -a $install/usr/share/gnuplot $fs/usr/share 1.33 }