wok view lilv/receipt @ rev 22530

systemd: added dependencies libwrap and pam
author Hans-G?nter Theisgen
date Fri Jan 03 07:13:19 2020 +0100 (2020-01-03)
parents 2a1852262142
children b9b707621001
line source
1 # SliTaz package receipt.
3 PACKAGE="lilv"
4 VERSION="0.14.4"
5 CATEGORY="development"
6 SHORT_DESC="Make the use of LV2 plugins as simple as possible for applications."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://drobilla.net/software/lilv/"
11 WGET_URL="http://download.drobilla.net/$TARBALL"
13 DEPENDS="serd sord sratom"
14 BUILD_DEPENDS="pkg-config lv2 serd-dev sord-dev sratom"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./waf configure --prefix=/usr &&
21 ./waf build &&
22 ./waf install --destdir=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/* $fs
29 }