# HG changeset patch # User Hans-Günter Theisgen # Date 1583859217 -3600 # Node ID 03605b16d3d127de6f377138c5e0803c39f4d533 # Parent 0414f5096d7ff9f70e7067840ca6f3601784ed09 updated liblrdf and liblrdf-dev (0.4.0 -> 0.6.1) diff -r 0414f5096d7f -r 03605b16d3d1 liblrdf-dev/receipt --- a/liblrdf-dev/receipt Tue Mar 10 17:37:42 2020 +0100 +++ b/liblrdf-dev/receipt Tue Mar 10 17:53:37 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="liblrdf-dev" -VERSION="0.4.0" +VERSION="0.6.1" CATEGORY="development" MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" -SHORT_DESC="liblrdf devel files" +SHORT_DESC="liblrdf development files." WEB_SITE="http://librdf.org/raptor" + +DEPENDS="liblrdf pkg-config raptor-dev" WANTED="liblrdf" -DEPENDS="liblrdf raptor-dev pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 0414f5096d7f -r 03605b16d3d1 liblrdf/receipt --- a/liblrdf/receipt Tue Mar 10 17:37:42 2020 +0100 +++ b/liblrdf/receipt Tue Mar 10 17:53:37 2020 +0100 @@ -1,34 +1,41 @@ # SliTaz package receipt. PACKAGE="liblrdf" -VERSION="0.4.0" +VERSION="0.6.1" CATEGORY="multimedia" +SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins." MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" -SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins" WEB_SITE="https://sourceforge.net/projects/lrdf" + TARBALL="${PACKAGE}-${VERSION}.tar.gz" WGET_URL="$SF_MIRROR/lrdf/$TARBALL" -DEPENDS="raptor ladspa libcurl libxslt" -BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev \ -autoconf automake libtool" +DEPENDS="ladspa libcurl libxslt raptor" +BUILD_DEPENDS="autoconf automake curl-dev ladspa-dev libtool + libxslt-dev raptor-dev" # Rules to configure and make the package. compile_rules() { - cd $src - patch -Np1 -i $stuff/md5.patch - patch -Np0 -i $stuff/raptor2.diff - patch -Np1 -i $stuff/pkgconfig-raptor.patch - autoreconf -vfi - ./configure $CONFIGURE_ARGS && make && make install +# patch -Np1 -i $stuff/md5.patch +# patch -Np0 -i $stuff/raptor2.diff +# patch -Np1 -i $stuff/pkgconfig-raptor.patch + + mkdir m4 + autoreconf -vfi && + ./configure \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/lib/*so* $fs/usr/lib/ - cp -a $install/usr/share/ladspa $fs/usr/share + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/lib/*so* $fs/usr/lib/ + cp -a $install/usr/share/ladspa $fs/usr/share }