wok-current view ardour/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | |
children | 5fec12f7b3c8 |
line source
1 # SliTaz package receipt.
3 PACKAGE="ardour"
4 VERSION="2.8.7"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A multichannel hard disk recorder and digital audio workstation"
8 WEB_SITE="http://ardour.org"
9 DEPENDS="liblrdf ladspa libgnomecanvasmm liblo libusb aubio libsndfile"
10 BUILD_DEPENDS="scons libboost-dev jack-audio-connection-kit-dev jack-audio-connection-kit alsa-lib-dev liblo liblo-dev aubio-dev libsndfile-dev ladspa-dev liblrdf-dev libart_lgpl-dev libusb-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="ftp://ftp.archlinux.org/other/ardour/$TARBALL"
13 TAGS="audio recorder mixer"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 sed -i '/-O3/d' SConstruct
20 mkdir -p $PWD/_pkg
22 scons PREFIX=/usr \
23 NLS=1 \
24 FREEDESKTOP=0 \
25 SYSLIBS=0 \
26 VST=0 \
27 WIIMOTE=0 \
28 LV2=0 \
29 FREESOUND=1 \
30 LIBLO=1 \
31 AUBIO=1 \
32 TRANZPORT=1 \
33 DIST_LIBDIR=lib
35 scons PREFIX=/usr \
36 NLS=1 \
37 FREEDESKTOP=0 \
38 SYSLIBS=0 \
39 VST=0 \
40 WIIMOTE=0 \
41 LV2=0 \
42 FREESOUND=1 \
43 LIBLO=1 \
44 AUBIO=1 \
45 TRANZPORT=1 \
46 DIST_LIBDIR=lib \
47 DESTDIR=$PWD/_pkg install
49 }
51 # Rules to gen a SliTaz package suitable for Tazpkg.
52 genpkg_rules()
53 {
54 mkdir -p $fs/usr/lib/ardour2 $fs/usr/share
55 cp -a $_pkg/usr/bin $fs/usr
56 cp -a $_pkg/usr/lib/ardour2/*so* $fs/usr/lib/ardour2
57 cp -a $_pkg/usr/share/ardour2 $fs/usr/share
59 }