wok-next view liblrdf/receipt @ rev 20784

update also: gpgme, libgpg-error and gpa
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 06:52:39 2018 +0000 (2018-06-09)
parents 25deb7c6df08
children d5aab818505e
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="jozee@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://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="liblrdf-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 }