wok annotate liblrdf/receipt @ rev 14908

slitaz-i18n: rewrite locale-pack.functions; slitaz-configs: now generate openbox desktop menu using po files; locale-*: update using new locale-pack.functions (FIXME: post_remove)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 03 17:37:48 2013 +0300 (2013-08-03)
parents d846aa26e70f
children 86790a278e70
rev   line source
slaxemulator@6806 1 # SliTaz package receipt.
slaxemulator@6806 2
slaxemulator@6806 3 PACKAGE="liblrdf"
slaxemulator@6806 4 VERSION="0.4.0"
slaxemulator@6806 5 CATEGORY="multimedia"
slaxemulator@6806 6 MAINTAINER="jozee@slitaz.org"
pascal@14714 7 LICENSE="GPL2"
slaxemulator@6806 8 SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
slaxemulator@6806 9 WEB_SITE="http://sourceforge.net/projects/lrdf"
slaxemulator@6806 10 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
slaxemulator@6806 11 WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
slaxemulator@6806 12
pankso@9910 13 DEPENDS="raptor ladspa libcurl libxslt"
pascal@13127 14 BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev \
pascal@13127 15 autoconf automake libtool"
slaxemulator@6806 16
slaxemulator@6806 17 # Rules to configure and make the package.
slaxemulator@13126 18 compile_rules()
slaxemulator@13126 19 {
slaxemulator@13126 20 cd $src
slaxemulator@13126 21 patch -Np1 -i $stuff/md5.patch
slaxemulator@13126 22 patch -Np0 -i $stuff/raptor2.diff
slaxemulator@13126 23 patch -Np1 -i $stuff/pkgconfig-raptor.patch
slaxemulator@13126 24 autoreconf -vfi
slaxemulator@13126 25 ./configure $CONFIGURE_ARGS && make && make install
slaxemulator@6806 26 }
slaxemulator@6806 27
slaxemulator@6806 28 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@6806 29 genpkg_rules()
slaxemulator@6806 30 {
slaxemulator@6806 31 mkdir -p $fs/usr/lib $fs/usr/share
slaxemulator@13126 32 cp -a $install/usr/lib/*so* $fs/usr/lib/
slaxemulator@13126 33 cp -a $install/usr/share/ladspa $fs/usr/share
slaxemulator@6806 34 }