wok rev 21343

updated libxfconf and libxfconf-dev (4.10.0 -> 4.13.6)
author Hans-G?nter Theisgen
date Sat Apr 20 15:09:02 2019 +0100 (2019-04-20)
parents 15e8d94fc34f
children 7d9952286cb0
files libxfconf-dev/receipt libxfconf/receipt
line diff
     1.1 --- a/libxfconf-dev/receipt	Sat Apr 20 15:26:18 2019 +0200
     1.2 +++ b/libxfconf-dev/receipt	Sat Apr 20 15:09:02 2019 +0100
     1.3 @@ -1,21 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libxfconf-dev"
     1.7 -VERSION="4.10.0"
     1.8 +VERSION="4.13.6"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Development files for libxfconf"
    1.11 +SHORT_DESC="Development files for libxfconf."
    1.12  MAINTAINER="al.bobylev@gmail.com"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="https://www.xfce.org/"
    1.15  
    1.16 +DEPENDS="dbus-glib-dev libxfce4util-dev libxfconf pkg-config"
    1.17  WANTED="libxfconf"
    1.18 -DEPENDS="libxfconf dbus-glib-dev libxfce4util-dev pkg-config"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.24 -	cp -a $install/usr/include $fs/usr
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.27 +	mkdir -p $fs/usr/lib
    1.28 +	mkdir -p $fs/usr/share
    1.29 +
    1.30 +	cp -a $install/usr/include		$fs/usr
    1.31 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.32 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.33  }
     2.1 --- a/libxfconf/receipt	Sat Apr 20 15:26:18 2019 +0200
     2.2 +++ b/libxfconf/receipt	Sat Apr 20 15:09:02 2019 +0100
     2.3 @@ -2,15 +2,15 @@
     2.4  
     2.5  PACKAGE="libxfconf"
     2.6  SOURCE="xfconf"
     2.7 -VERSION="4.10.0"
     2.8 -HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
     2.9 +VERSION="4.13.6"
    2.10  CATEGORY="development"
    2.11 -SHORT_DESC="Client library for Xfce4 configure interface"
    2.12 +SHORT_DESC="Client library for Xfce4 configure interface."
    2.13  MAINTAINER="al.bobylev@gmail.com"
    2.14  LICENSE="GPL2"
    2.15  WEB_SITE="https://www.xfce.org/"
    2.16 +
    2.17  TARBALL="$SOURCE-$VERSION.tar.bz2"
    2.18 -WGET_URL="http://archive.xfce.org/src/xfce/$SOURCE/$HI_VERSION/$TARBALL"
    2.19 +WGET_URL="http://archive.xfce.org/src/xfce/$SOURCE/${VERSION%.*}/$TARBALL"
    2.20  
    2.21  DEPENDS="dbus-glib libxfce4util"
    2.22  BUILD_DEPENDS="dbus-glib-dev libxfce4util-dev"
    2.23 @@ -18,15 +18,19 @@
    2.24  # Rules to configure and make the package.
    2.25  compile_rules()
    2.26  {
    2.27 -	./configure $CONFIGURE_ARGS && make && make install
    2.28 +	./configure $CONFIGURE_ARGS &&
    2.29 +	make -j 1 &&
    2.30 +	make install
    2.31  }
    2.32  
    2.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.34  genpkg_rules()
    2.35  {
    2.36 -	mkdir -p $fs/usr/lib $fs/usr/share
    2.37 -	cp -a $install/usr/bin $fs/usr
    2.38 -	cp -a $install/usr/lib/xfce4 $fs/usr/lib
    2.39 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.40 -	cp -a $install/usr/share/dbus-1 $fs/usr/share
    2.41 +	mkdir -p $fs/usr/lib
    2.42 +	mkdir -p $fs/usr/share
    2.43 +
    2.44 +	cp -a $install/usr/bin		$fs/usr
    2.45 +	cp -a $install/usr/lib/xfce4	$fs/usr/lib
    2.46 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.47 +	cp -a $install/usr/share/dbus-1	$fs/usr/share
    2.48  }