wok view libgtkimageview/receipt @ rev 6344

Up: liboil, liboil-dev to 0.3.17.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Sep 19 14:21:08 2010 +0000 (2010-09-19)
parents
children af022550edde
line source
1 # SliTaz package receipt.
3 PACKAGE="libgtkimageview"
4 VERSION="1.6.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Simple image viewer widget for GTK."
7 MAINTAINER="gokhlayeh@mailoo.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev expat-dev"
10 SOURCE="gtkimageview"
11 TARBALL="$SOURCE-$VERSION.tar.gz?format=raw"
12 WEB_SITE="http://trac.bjourne.webfactional.com/"
13 WGET_URL="http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 # Remove devel files
33 cd $fs/usr/lib
34 rm -r libgtkimageview.a libgtkimageview.la pkgconfig/
35 }