wok rev 21474

updated mousepad (0.3.0 -> 0.4.1)
author Hans-G?nter Theisgen
date Wed May 01 07:26:05 2019 +0100 (2019-05-01)
parents 2d7b87d501a3
children 1d27173881e7
files mousepad/receipt
line diff
     1.1 --- a/mousepad/receipt	Tue Apr 30 21:45:29 2019 +0200
     1.2 +++ b/mousepad/receipt	Wed May 01 07:26:05 2019 +0100
     1.3 @@ -1,36 +1,43 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="mousepad"
     1.7 -VERSION="0.3.0"
     1.8 +VERSION="0.4.1"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="Xfce Text Editor"
    1.11 +TAGS="text-editor"
    1.12 +SHORT_DESC="Xfce Text Editor."
    1.13  MAINTAINER="erjo@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="https://git.xfce.org/apps/mousepad/about/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18 -WEB_SITE="https://www.xfce.org/"
    1.19 -WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.20 -TAGS="text-editor"
    1.21 +WGET_URL="https://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.22  
    1.23 -DEPENDS="gtk+ xorg-libXdamage dbus-glib gtksourceview"
    1.24 -BUILD_DEPENDS="intltool gtk+-dev dbus-glib-dev gtksourceview-dev"
    1.25 +DEPENDS="dbus-glib gtk+ gtksourceview xorg-libXdamage"
    1.26 +BUILD_DEPENDS="dbus-glib-dev gtk+-dev gtksourceview-dev intltool"
    1.27  
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure --prefix=/usr \
    1.32 -		--enable-debug=no \
    1.33 -		--mandir=/usr/share/man $CONFIGURE_ARGS && \
    1.34 -	make && make DESTDIR=$DESTDIR install
    1.35 +	./configure			\
    1.36 +		--prefix=/usr		\
    1.37 +		--enable-debug=no	\
    1.38 +		--mandir=/usr/share/man	\
    1.39 +		$CONFIGURE_ARGS &&
    1.40 +	make &&
    1.41 +	make DESTDIR=$DESTDIR install
    1.42  }
    1.43  
    1.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.45  genpkg_rules()
    1.46  {
    1.47  	mkdir -p $fs/usr/share/locale
    1.48 -	
    1.49 -	cp -a $install/usr/bin $fs/usr
    1.50 -	cp -a $install/usr/share/locale/fr $fs/usr/share/locale
    1.51 -	cp -a $install/usr/share/locale/ru $fs/usr/share/locale
    1.52 -	cp -a $install/usr/share/applications $fs/usr/share
    1.53 +	mkdir -p $fs/usr/share/glib-2.0
    1.54 +
    1.55 +	cp -a $install/usr/bin				$fs/usr
    1.56 +	cp -a $install/usr/share/locale/de		$fs/usr/share/locale
    1.57 +	cp -a $install/usr/share/locale/fr		$fs/usr/share/locale
    1.58 +	cp -a $install/usr/share/locale/ru		$fs/usr/share/locale
    1.59 +	cp -a $install/usr/share/applications		$fs/usr/share
    1.60 +	cp -a $install/usr/share/glib-2.0/schemas	$fs/usr/share/glib-2.0
    1.61  }
    1.62