wok view gpicview/receipt @ rev 15581

xorg-cf-files: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 11:11:23 2013 +0000 (2013-11-30)
parents 4884337b6445
children 523db8f94fcb
line source
1 # SliTaz package receipt.
3 PACKAGE="gpicview"
4 VERSION="0.2.1"
5 CATEGORY="graphics"
6 SHORT_DESC="Light pictures viewer."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://lxde.sourceforge.net/gpicview/"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
13 DEPENDS="glibc-base expat glib libgio zlib fontconfig freetype \
14 gtk+ atk cairo pango pixman jpeg libpng libxcb xcb-util \
15 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdamage \
16 xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender"
17 BUILD_DEPENDS="gtk+-dev xorg-dev intltool"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --prefix=/usr \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share/$PACKAGE $fs/usr/share
37 }