wok view feh/receipt @ rev 1188

libsdl*: typo in pkg name
author Christophe Lincoln <pankso@slitaz.org>
date Mon Aug 04 15:39:46 2008 +0200 (2008-08-04)
parents e835f5d77665
children bd6a02acbdf9
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 jpeg zlib"
9 BUILD_DEPENDS="imlib2-dev imlib2 giblib-dev giblib xorg-xineramaproto jpeg-dev zlib-dev"
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 }