wok view gucharmap/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents c04d1e0a8c6f
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="gucharmap"
4 VERSION="3.0.1"
5 CATEGORY="utilities"
6 SHORT_DESC="GNOME Character Map (GTK+2)"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://wiki.gnome.org/action/show/Apps/Gucharmap"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtk+ xorg-libXdamage"
14 BUILD_DEPENDS="itstool libxml2-tools glib-dev libgio-dev gtk+-dev"
15 SPLIT="gucharmap-i18n"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --disable-maintainer-mode \
23 --disable-gconf \
24 --disable-schemas-install \
25 --disable-scrollkeeper \
26 --with-gtk=2.0 \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
35 cp -a $install/etc $fs
36 cp -a $install/usr/bin/$PACKAGE $fs/usr/bin
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 cp -a $install/usr/share/applications $fs/usr/share
39 }