wok view gv/receipt @ rev 14317

elementary-dev: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 07 13:15:40 2013 +0200 (2013-04-07)
parents 7251a7589942
children 2b9f96603415
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/"
10 WGET_URL="http://ftp.gnu.org/gnu/gv/$TARBALL"
12 DEPENDS="ghostscript xorg-libXaw3d xorg-libXinerama"
13 BUILD_DEPENDS="xorg-libXaw3d-dev xorg-libXinerama-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make $MAKEFLAGS &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 rm -rf $fs/usr/share/man
31 }