wok view lv2/receipt @ rev 20114

Up xchm (1.23), apulse (0.1.10)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Thu Oct 12 11:31:13 2017 +0200 (2017-10-12)
parents 7cc077197fbf
children 8dd8bab3f0ca
line source
1 # SliTaz package receipt.
3 PACKAGE="lv2"
4 VERSION="1.0.0"
5 CATEGORY="development"
6 SHORT_DESC="Portable plugin standard for audio systems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://lv2plug.in/trac/"
11 WGET_URL="http://lv2plug.in/spec/$TARBALL"
13 DEPENDS="libsndfile"
14 BUILD_DEPENDS="pkg-config libsndfile-dev"
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 }