wok-6.x rev 14219
Add gv
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 18 13:53:05 2013 +0100 (2013-03-18) |
parents | 4fc7e24356a5 |
children | 6d11967fcb51 |
files | gv/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gv/receipt Mon Mar 18 13:53:05 2013 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gv" 1.7 +VERSION="3.7.4" 1.8 +CATEGORY="office" 1.9 +SHORT_DESC="X11 user interface for Ghostscript." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://www.gnu.org/software/gv/" 1.13 + 1.14 +WGET_URL="http://ftp.gnu.org/gnu/gv/$TARBALL" 1.15 + 1.16 +DEPENDS="ghostscript xorg-libXaw3d xorg-libXinerama" 1.17 +BUILD_DEPENDS="xorg-libXaw3d-dev xorg-libXinerama-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + ./configure \ 1.24 + --prefix=/usr \ 1.25 + $CONFIGURE_ARGS && 1.26 + make $MAKEFLAGS && 1.27 + make DESTDIR=$DESTDIR install soinstall 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + cp -a $install/usr $fs 1.34 + rm -rf $fs/usr/share/man 1.35 +}