wok diff libxfconf/receipt @ rev 21600

Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author maniac
date Thu May 23 12:16:28 2019 +0300 (2019-05-23)
parents a78610b2eb47
children 385cb03e0228
line diff
     1.1 --- a/libxfconf/receipt	Mon Jan 21 12:26:11 2019 +0100
     1.2 +++ b/libxfconf/receipt	Thu May 23 12:16:28 2019 +0300
     1.3 @@ -2,15 +2,15 @@
     1.4  
     1.5  PACKAGE="libxfconf"
     1.6  SOURCE="xfconf"
     1.7 -VERSION="4.10.0"
     1.8 -HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
     1.9 +VERSION="4.13.6"
    1.10  CATEGORY="development"
    1.11 -SHORT_DESC="Client library for Xfce4 configure interface"
    1.12 +SHORT_DESC="Client library for Xfce4 configure interface."
    1.13  MAINTAINER="al.bobylev@gmail.com"
    1.14  LICENSE="GPL2"
    1.15  WEB_SITE="https://www.xfce.org/"
    1.16 +
    1.17  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.18 -WGET_URL="http://archive.xfce.org/src/xfce/$SOURCE/$HI_VERSION/$TARBALL"
    1.19 +WGET_URL="http://archive.xfce.org/src/xfce/$SOURCE/${VERSION%.*}/$TARBALL"
    1.20  
    1.21  DEPENDS="dbus-glib libxfce4util"
    1.22  BUILD_DEPENDS="dbus-glib-dev libxfce4util-dev"
    1.23 @@ -18,15 +18,19 @@
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure $CONFIGURE_ARGS && make && make install
    1.28 +	./configure $CONFIGURE_ARGS &&
    1.29 +	make -j 1 &&
    1.30 +	make install
    1.31  }
    1.32  
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.37 -	cp -a $install/usr/bin $fs/usr
    1.38 -	cp -a $install/usr/lib/xfce4 $fs/usr/lib
    1.39 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 -	cp -a $install/usr/share/dbus-1 $fs/usr/share
    1.41 +	mkdir -p $fs/usr/lib
    1.42 +	mkdir -p $fs/usr/share
    1.43 +
    1.44 +	cp -a $install/usr/bin		$fs/usr
    1.45 +	cp -a $install/usr/lib/xfce4	$fs/usr/lib
    1.46 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.47 +	cp -a $install/usr/share/dbus-1	$fs/usr/share
    1.48  }