wok view liblrdf/receipt @ rev 20421

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 07 23:03:21 2018 +0200 (2018-08-07)
parents 4904e3d374a9
children 03605b16d3d1
line source
1 # SliTaz package receipt.
3 PACKAGE="liblrdf"
4 VERSION="0.4.0"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A library for the manipulation of RDF file in LADSPA plugins"
9 WEB_SITE="https://sourceforge.net/projects/lrdf"
10 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
11 WGET_URL="$SF_MIRROR/lrdf/$TARBALL"
13 DEPENDS="raptor ladspa libcurl libxslt"
14 BUILD_DEPENDS="raptor-dev ladspa-dev curl-dev libxslt-dev \
15 autoconf automake libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 patch -Np1 -i $stuff/md5.patch
22 patch -Np0 -i $stuff/raptor2.diff
23 patch -Np1 -i $stuff/pkgconfig-raptor.patch
24 autoreconf -vfi
25 ./configure $CONFIGURE_ARGS && make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share
32 cp -a $install/usr/lib/*so* $fs/usr/lib/
33 cp -a $install/usr/share/ladspa $fs/usr/share
34 }