wok view lv2/receipt @ rev 17514

Up openssl (1.0.1k)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 12 21:18:21 2015 +0100 (2015-01-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 }