wok annotate liblrdf/receipt @ rev 21529

Up ncurses-examples (6.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 04 17:37:51 2019 +0200 (2019-05-04)
parents 4904e3d374a9
children 03605b16d3d1
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"
pascal@20421 9 WEB_SITE="https://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 }