wok view liblrdf/receipt @ rev 23784

updated xvkbd (3.7 -> 4.1)
author Hans-G?nter Theisgen
date Thu May 21 14:49:06 2020 +0100 (2020-05-21)
parents 03605b16d3d1
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="liblrdf"
4 VERSION="0.6.1"
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="https://github.com/swh/LRDF"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/v$VERSION/$TARBALL"
14 DEPENDS="ladspa libcurl libxslt raptor"
15 BUILD_DEPENDS="autoconf automake curl-dev ladspa-dev libtool
16 libxslt-dev raptor-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # patch -Np1 -i $stuff/md5.patch
22 # patch -Np0 -i $stuff/raptor2.diff
23 # patch -Np1 -i $stuff/pkgconfig-raptor.patch
25 mkdir m4
26 autoreconf -vfi &&
27 ./configure \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 mkdir -p $fs/usr/share
39 cp -a $install/usr/lib/*so* $fs/usr/lib/
40 cp -a $install/usr/share/ladspa $fs/usr/share
41 }