wok view lv2/receipt @ rev 21805

Up vlc (3.0.6) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 19:40:09 2019 +0200 (2019-08-15)
parents 8dd8bab3f0ca
children c71df21187b4
line source
1 # SliTaz package receipt.
3 PACKAGE="lv2"
4 VERSION="1.16.0"
5 CATEGORY="development"
6 SHORT_DESC="Portable plugin standard for audio systems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://lv2plug.in/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://lv2plug.in/spec/$TARBALL"
14 DEPENDS="libsndfile"
15 BUILD_DEPENDS="pkg-config libsndfile-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
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 }