wok view gucharmap/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
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 }