wok view mousepad/receipt @ rev 25776

Update thunderbird to 68.12.1 latest ESR work with old glibc, and block autoupdate
author Stanislas Leduc <shann@slitaz.org>
date Mon Sep 16 17:28:27 2024 +0200 (2 months ago)
parents 17091bc7c301
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mousepad"
4 VERSION="0.4.2"
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://docs.xfce.org/apps/mousepad/start"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
15 SUGGESTED="mousepad-lang"
16 DEPENDS="dbus-glib gtk+ gtksourceview libgio xfconf xorg-libXdamage"
17 BUILD_DEPENDS="dbus-glib-dev gtk+-dev gtksourceview-dev intltool
18 libgio-dev xfconf-dev"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - $WEB_SITE 2>/dev/null |
24 sed '/ released /!d;s| released.*||;s|.*mousepad ||'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 export CFLAGS="$CFLAGS -I/usr/include/gio-unix-2.0"
32 ./configure \
33 --prefix=/usr \
34 --enable-debug=no \
35 $CONFIGURE_ARGS &&
36 make &&
37 make install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 cook_copy_folders bin
44 cook_copy_folders schemas
45 }