wok view viewnior/receipt @ rev 16247

ARM: fix libgio version and add hicolor-icon-theme
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 03 21:27:40 2014 +0200 (2014-04-03)
parents f4c22f009037
children 62b66edb40b5
line source
1 # SliTaz package receipt.
3 PACKAGE="viewnior"
4 VERSION="1.4"
5 CATEGORY="graphics"
6 SHORT_DESC="Light and simple image viewer."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://xsisqox.github.com/Viewnior/"
11 WGET_URL="http://dl.dropboxusercontent.com/s/zytq0suabesv933/$TARBALL"
12 TAGS="image photo viewer"
14 DEPENDS="gtk+ exiv2"
15 BUILD_DEPENDS="gtk+-dev shared-mime-info-dev intltool libffi exiv2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/icons/hicolor/24x24
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/viewnior $fs/usr/share
33 cp -a $install/usr/share/icons/hicolor/24x24/apps \
34 $fs/usr/share/icons/hicolor/24x24
35 }