wok-next view liblrdf/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d6378d455338
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="liblrdf"
4 VERSION="0.4.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/lrdf/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
14 BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev \
15 autoconf automake libtool"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 autoreconf -vfi
21 ./configure $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 liblrdf)
30 copy @std
31 DEPENDS="raptor ladspa libcurl libxslt"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="liblrdf raptor-dev"
36 ;;
37 esac
38 }