wok view feh/receipt @ rev 1166

postfix: fix depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 30 12:09:40 2008 +0000 (2008-07-30)
parents
children 7e57bf5a8f06
line source
1 # SliTaz package receipt
3 PACKAGE="feh"
4 VERSION="1.3.4"
5 CATEGORY="graphics"
6 SHORT_DESC="Lightweight and powerfull image viewer and composer"
7 MAINTAINER="mallory@sweetpeople.org"
8 DEPENDS="imlib2 giblib"
9 BUILD_DEPENDS="imlib2-dev imlib2 giblib-dev giblib"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://linuxbrit.co.uk/feh/"
12 WGET_URL="http://linuxbrit.co.uk/downloads/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr
19 make
20 make DESTDIR=../_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $_pkg/usr/bin/feh $fs/usr/bin
28 }