wok view ardour/receipt @ rev 13474

Up: testdisk (6.14)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Oct 09 16:11:30 2012 +0200 (2012-10-09)
parents fc917d308352
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="ardour"
4 VERSION="2.8.14"
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="ftp://ftp.archlinux.org/other/ardour/$TARBALL"
11 TAGS="audio recorder mixer"
13 DEPENDS="liblrdf ladspa liblo libgnomecanvas libusb-compat aubio libsndfile
14 libsamplerate raptor fftw libxslt libgnomecanvasmm soundtouch"
15 BUILD_DEPENDS="scons libboost-dev libboost-thread-dev libboost-math-dev \
16 jack-audio-connection-kit-dev alsa-lib-dev liblo-dev aubio-dev libxslt-dev \
17 libsndfile-dev ladspa-dev liblrdf-dev libart_lgpl-dev libusb-dev \
18 libsamplerate-dev curl-dev fftw-dev soundtouch-dev raptor-dev \
19 libgnomecanvasmm-dev libgnomecanvas-dev pkg-config liblrdf-dev gtkmm-dev \
20 libboost-system-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
26 sed -i '/-O3/d' SConstruct
27 mkdir -p $DESTDIR
29 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
30 PREFIX=/usr \
31 NLS=1 \
32 FREEDESKTOP=0 \
33 SYSLIBS=1 \
34 VST=0 \
35 WIIMOTE=0 \
36 LV2=0 \
37 FREESOUND=1 \
38 LIBLO=1 \
39 AUBIO=1 \
40 TRANZPORT=1 \
41 DIST_LIBDIR=lib
43 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
44 PREFIX=/usr \
45 NLS=1 \
46 FREEDESKTOP=0 \
47 SYSLIBS=1 \
48 VST=0 \
49 WIIMOTE=0 \
50 LV2=0 \
51 FREESOUND=1 \
52 LIBLO=1 \
53 AUBIO=1 \
54 TRANZPORT=1 \
55 DIST_LIBDIR=lib \
56 DESTDIR=$DESTDIR install
58 }
60 # Rules to gen a SliTaz package suitable for Tazpkg.
61 genpkg_rules()
62 {
63 mkdir -p $fs/usr/lib/ardour2 $fs/usr/share
64 cp -a $_pkg/usr/bin $fs/usr
65 cp -a $_pkg/usr/lib/ardour2/*so* $fs/usr/lib/ardour2
66 cp -a $_pkg/usr/share/ardour2 $fs/usr/share
68 }