wok rev 23082

updated liblrdf and liblrdf-dev (0.4.0 -> 0.6.1)
author Hans-G?nter Theisgen
date Tue Mar 10 17:53:37 2020 +0100 (2020-03-10)
parents 0414f5096d7f
children f95a7662bc92
files liblrdf-dev/receipt liblrdf/receipt
line diff
     1.1 --- a/liblrdf-dev/receipt	Tue Mar 10 17:37:42 2020 +0100
     1.2 +++ b/liblrdf-dev/receipt	Tue Mar 10 17:53:37 2020 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="liblrdf-dev"
     1.7 -VERSION="0.4.0"
     1.8 +VERSION="0.6.1"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  LICENSE="GPL2"
    1.12 -SHORT_DESC="liblrdf devel files"
    1.13 +SHORT_DESC="liblrdf development files."
    1.14  WEB_SITE="http://librdf.org/raptor"
    1.15 +
    1.16 +DEPENDS="liblrdf pkg-config raptor-dev"
    1.17  WANTED="liblrdf"
    1.18  
    1.19 -DEPENDS="liblrdf raptor-dev pkg-config"
    1.20 -
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 -	cp -a $install/usr/include $fs/usr
    1.28 +
    1.29 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.30 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.31 +	cp -a $install/usr/include		$fs/usr
    1.32  }
     2.1 --- a/liblrdf/receipt	Tue Mar 10 17:37:42 2020 +0100
     2.2 +++ b/liblrdf/receipt	Tue Mar 10 17:53:37 2020 +0100
     2.3 @@ -1,34 +1,41 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="liblrdf"
     2.7 -VERSION="0.4.0"
     2.8 +VERSION="0.6.1"
     2.9  CATEGORY="multimedia"
    2.10 +SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins."
    2.11  MAINTAINER="jozee@slitaz.org"
    2.12  LICENSE="GPL2"
    2.13 -SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
    2.14  WEB_SITE="https://sourceforge.net/projects/lrdf"
    2.15 +
    2.16  TARBALL="${PACKAGE}-${VERSION}.tar.gz"
    2.17  WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
    2.18  
    2.19 -DEPENDS="raptor ladspa libcurl libxslt"
    2.20 -BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev \
    2.21 -autoconf automake libtool"
    2.22 +DEPENDS="ladspa libcurl libxslt raptor"
    2.23 +BUILD_DEPENDS="autoconf automake curl-dev ladspa-dev libtool 
    2.24 +	libxslt-dev raptor-dev"
    2.25  
    2.26  # Rules to configure and make the package.
    2.27  compile_rules()
    2.28  {
    2.29 -	cd $src
    2.30 -	patch -Np1 -i $stuff/md5.patch
    2.31 -	patch -Np0 -i $stuff/raptor2.diff
    2.32 -	patch -Np1 -i $stuff/pkgconfig-raptor.patch
    2.33 -	autoreconf -vfi
    2.34 -	./configure $CONFIGURE_ARGS && make && make install
    2.35 +#	patch -Np1 -i $stuff/md5.patch
    2.36 +#	patch -Np0 -i $stuff/raptor2.diff
    2.37 +#	patch -Np1 -i $stuff/pkgconfig-raptor.patch
    2.38 +
    2.39 +	mkdir	m4
    2.40 +	autoreconf -vfi &&
    2.41 +	./configure		\
    2.42 +		$CONFIGURE_ARGS &&
    2.43 +	make &&
    2.44 +	make install
    2.45  }
    2.46  	
    2.47  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.48  genpkg_rules()
    2.49  {
    2.50 -	mkdir -p $fs/usr/lib $fs/usr/share
    2.51 -	cp -a $install/usr/lib/*so* $fs/usr/lib/
    2.52 -	cp -a $install/usr/share/ladspa $fs/usr/share
    2.53 +	mkdir -p $fs/usr/lib
    2.54 +	mkdir -p $fs/usr/share
    2.55 +
    2.56 +	cp -a $install/usr/lib/*so*	$fs/usr/lib/
    2.57 +	cp -a $install/usr/share/ladspa	$fs/usr/share
    2.58  }