wok view mousepad/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 a78610b2eb47
children d93dbc77b767
line source
1 # SliTaz package receipt.
3 PACKAGE="mousepad"
4 VERSION="0.4.1"
5 CATEGORY="x-window"
6 TAGS="text-editor"
7 SHORT_DESC="Xfce Text Editor."
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://git.xfce.org/apps/mousepad/about/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
15 DEPENDS="dbus-glib gtk+ gtksourceview xorg-libXdamage"
16 BUILD_DEPENDS="dbus-glib-dev gtk+-dev gtksourceview-dev intltool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --enable-debug=no \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/locale
34 mkdir -p $fs/usr/share/glib-2.0
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/locale/de $fs/usr/share/locale
38 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
39 cp -a $install/usr/share/locale/ru $fs/usr/share/locale
40 cp -a $install/usr/share/applications $fs/usr/share
41 cp -a $install/usr/share/glib-2.0/schemas $fs/usr/share/glib-2.0
42 }