wok view libgtkimageview/receipt @ rev 14049

gst-python, parole: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 18 21:32:21 2013 +0100 (2013-02-18)
parents af022550edde
children 8f447cf2eee5
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@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev expat-dev"
10 SOURCE="gtkimageview"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://trac.bjourne.webfactional.com/"
13 WGET_URL="http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/$TARBALL?format=raw"
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 }