wok view lilv/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
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 }