wok view gv/receipt @ rev 14219

Add gv
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 18 13:53:05 2013 +0100 (2013-03-18)
parents
children 016b98861bed
line source
1 # SliTaz package receipt.
3 PACKAGE="gv"
4 VERSION="3.7.4"
5 CATEGORY="office"
6 SHORT_DESC="X11 user interface for Ghostscript."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/gv/"
11 WGET_URL="http://ftp.gnu.org/gnu/gv/$TARBALL"
13 DEPENDS="ghostscript xorg-libXaw3d xorg-libXinerama"
14 BUILD_DEPENDS="xorg-libXaw3d-dev xorg-libXinerama-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make $MAKEFLAGS &&
24 make DESTDIR=$DESTDIR install soinstall
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 rm -rf $fs/usr/share/man
32 }