wok-next view gpicview/receipt @ rev 20459

Combine receipts
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 02 13:45:43 2018 +0200 (2018-03-02)
parents 60bd4df08f57
children d3444352a0af
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gpicview"
4 VERSION="0.2.5"
5 CATEGORY="graphics"
6 SHORT_DESC="Lightweight image viewer"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.lxde.org/en/GPicView"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
14 BUILD_DEPENDS="intltool gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # http://www.linuxfromscratch.org/blfs/view/stable/lxde/gpicview.html
20 sed -i 's|Utility;||' gpicview.desktop.in
22 ./configure \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 # skip pixmaps and icons (found in the icon theme)
31 copy bin/ *.desktop *.ui
32 DEPENDS="atk cairo fontconfig freetype gdk-pixbuf glib gtk+ libjpeg-turbo \
33 pango xorg-libX11"
34 TAGS="LXDE"
35 }