wok view mousepad/receipt @ rev 23034

updated libgdiplus and libggdiplus-dev again (2.10 -> 6.0.4)
author Hans-G?nter Theisgen
date Wed Mar 04 07:26:30 2020 +0100 (2020-03-04)
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 }