wok-stable annotate liblrdf/receipt @ rev 12465

Up e2fsprogs (1.44.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 04 18:42:23 2019 +0100 (2019-03-04)
parents c614eb046326
children
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"
slaxemulator@6806 7 SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
slaxemulator@6806 8 WEB_SITE="http://sourceforge.net/projects/lrdf"
slaxemulator@6806 9 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
slaxemulator@6806 10 WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
slaxemulator@6806 11
pankso@9910 12 DEPENDS="raptor ladspa libcurl libxslt"
pankso@9910 13 BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev"
slaxemulator@6806 14
slaxemulator@6806 15 # Rules to configure and make the package.
slaxemulator@6806 16
slaxemulator@6806 17 compile_rules() {
gokhlayeh@11573 18 ./configure $CONFIGURE_ARGS && make && make install
slaxemulator@6806 19 }
slaxemulator@6806 20
slaxemulator@6806 21 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@6806 22 genpkg_rules()
slaxemulator@6806 23 {
slaxemulator@6806 24 mkdir -p $fs/usr/lib $fs/usr/share
slaxemulator@6806 25 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
slaxemulator@6806 26 cp -a $_pkg/usr/share/ladspa $fs/usr/share
slaxemulator@6806 27 }