wok view liblrdf/receipt @ rev 25682

Up libqcow (20240308)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 18:25:46 2024 +0000 (2 months ago)
parents 5ea0ce1cecc0
children
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 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
22 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 # patch -Np1 -i $stuff/md5.patch
29 # patch -Np0 -i $stuff/raptor2.diff
30 # patch -Np1 -i $stuff/pkgconfig-raptor.patch
32 mkdir m4
33 autoreconf -vfi &&
34 ./configure \
35 $CONFIGURE_ARGS &&
36 make &&
37 make install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/lib
44 mkdir -p $fs/usr/share
46 cp -a $install/usr/lib/*so* $fs/usr/lib/
47 cp -a $install/usr/share/ladspa $fs/usr/share
48 }