wok rev 22851

updated glade3 (3.8.0 -> 3.8.6)
author Hans-G?nter Theisgen
date Mon Feb 17 14:01:47 2020 +0100 (2020-02-17)
parents fa8eccc0015a
children 193a38dd2e06
files glade3/receipt
line diff
     1.1 --- a/glade3/receipt	Sun Feb 16 19:19:37 2020 +0100
     1.2 +++ b/glade3/receipt	Mon Feb 17 14:01:47 2020 +0100
     1.3 @@ -1,27 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="glade3"
     1.7 -VERSION="3.8.0"
     1.8 +VERSION="3.8.6"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Vector drawing application."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="LGPL"
    1.13 -SUGGESTED="python"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15  WEB_SITE="https://glade.gnome.org/"
    1.16 +
    1.17 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.18  WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.19  
    1.20 +SUGGESTED="python"
    1.21  DEPENDS="gtk+ libglade xorg-libXdamage"
    1.22 -BUILD_DEPENDS="intltool libxml2-dev expat-dev python gtk+-dev"
    1.23 +BUILD_DEPENDS="expat-dev gtk+-dev intltool itstool libgnome 
    1.24 +	libxml2-dev python"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	./configure \
    1.31 -		--prefix=/usr \
    1.32 -		--with-html-dir=/usr/share/doc \
    1.33 -		--disable-scrollkeeper \
    1.34 +	./configure				\
    1.35 +		--prefix=/usr			\
    1.36 +		--with-html-dir=/usr/share/doc	\
    1.37 +		--disable-scrollkeeper		\
    1.38  		$CONFIGURE_ARGS
    1.39  	# Doc doesn't built
    1.40  	sed -i 's/= help/=/' Makefile
    1.41 @@ -32,13 +33,14 @@
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45 -	mkdir -p $fs/usr/lib $fs/usr/share/pixmaps
    1.46 -	cp -a $install/usr/bin $fs/usr
    1.47 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.48 -	cp -a $install/usr/lib/glade3 $fs/usr/lib
    1.49 -	rm $fs/usr/lib/glade3/modules/*.*a
    1.50 +	mkdir -p $fs/usr/lib
    1.51 +	mkdir -p $fs/usr/share/pixmaps
    1.52 +
    1.53 +	cp -a $install/usr/bin		$fs/usr
    1.54 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.55 +	cp -a $install/usr/lib/glade3	$fs/usr/lib
    1.56 +	rm				$fs/usr/lib/glade3/modules/*.*a
    1.57  	cp -a $install/usr/share/icons/hicolor/24x24/apps/* \
    1.58 -		$fs/usr/share/pixmaps
    1.59 -	cp -a $install/usr/share/glade3 $fs/usr/share
    1.60 +					$fs/usr/share/pixmaps
    1.61 +	cp -a $install/usr/share/glade3	$fs/usr/share
    1.62  }
    1.63 -