wok view lv2/receipt @ rev 21404
Up hiawatha (10.9)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 23 11:00:59 2019 +0200 (2019-04-23) |
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 }