wok view gpicview/receipt @ rev 5877

busybox: disable mkfs.ext2, no journal support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 20 20:13:15 2010 +0200 (2010-07-20)
parents 4872ce496b05
children 4884337b6445
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 DEPENDS="glibc-base expat glib libgio zlib fontconfig freetype \
9 gtk+ atk cairo pango pixman jpeg libpng libxcb xcb-util \
10 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdamage \
11 xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender"
12 BUILD_DEPENDS="gtk+-dev xorg-dev"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WEB_SITE="http://lxde.sourceforge.net/gpicview/"
15 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
35 }