wok view libgtkimageview/receipt @ rev 20917

updated fdupes (1.40 -> 1.6.1)
author Hans-G?nter Theisgen
date Thu Feb 28 17:10:02 2019 +0100 (2019-02-28)
parents 8f447cf2eee5
children 22471cbea549
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 LICENSE="LGPL2.1"
9 SOURCE="gtkimageview"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://web.archive.org/web/20130517010338/http://trac.bjourne.webfactional.com/"
12 WGET_URL="http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/$TARBALL?format=raw"
14 DEPENDS="gtk+"
15 BUILD_DEPENDS="gtk+-dev expat-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 # Remove devel files
35 cd $fs/usr/lib
36 rm -r libgtkimageview.a libgtkimageview.la pkgconfig/
37 }