wok view ardour/receipt @ rev 15563

Up: thunderbird-langpack-pt_PT (17.0.11esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 24 17:37:47 2013 +0100 (2013-11-24)
parents 8c3972ea5549
children 735bd1685a95
line source
1 # SliTaz package receipt.
3 PACKAGE="ardour"
4 VERSION="2.8.14"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A multichannel hard disk recorder and digital audio workstation"
9 WEB_SITE="http://ardour.org"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="ftp://ftp.archlinux.org/other/ardour/$TARBALL"
12 TAGS="audio recorder mixer"
14 DEPENDS="liblrdf ladspa liblo libgnomecanvas libusb-compat aubio libsndfile
15 libsamplerate raptor fftw libxslt libgnomecanvasmm soundtouch"
16 BUILD_DEPENDS="scons libboost-dev libboost-thread-dev libboost-math-dev \
17 jack-audio-connection-kit-dev alsa-lib-dev liblo-dev aubio-dev libxslt-dev \
18 libsndfile-dev ladspa-dev liblrdf-dev libart_lgpl-dev libusb-dev \
19 libsamplerate-dev curl-dev fftw-dev soundtouch-dev raptor-dev \
20 libgnomecanvasmm-dev libgnomecanvas-dev pkg-config liblrdf-dev gtkmm-dev \
21 libboost-system-dev"
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 sed -i '/-O3/d' SConstruct
28 mkdir -p $DESTDIR
30 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
31 PREFIX=/usr \
32 NLS=1 \
33 FREEDESKTOP=0 \
34 SYSLIBS=1 \
35 VST=0 \
36 WIIMOTE=0 \
37 LV2=0 \
38 FREESOUND=1 \
39 LIBLO=1 \
40 AUBIO=1 \
41 TRANZPORT=1 \
42 DIST_LIBDIR=lib
44 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
45 PREFIX=/usr \
46 NLS=1 \
47 FREEDESKTOP=0 \
48 SYSLIBS=1 \
49 VST=0 \
50 WIIMOTE=0 \
51 LV2=0 \
52 FREESOUND=1 \
53 LIBLO=1 \
54 AUBIO=1 \
55 TRANZPORT=1 \
56 DIST_LIBDIR=lib \
57 DESTDIR=$DESTDIR install
59 }
61 # Rules to gen a SliTaz package suitable for Tazpkg.
62 genpkg_rules()
63 {
64 mkdir -p $fs/usr/lib/ardour2 $fs/usr/share
65 cp -a $install/usr/bin $fs/usr
66 cp -a $install/usr/lib/ardour2/*so* $fs/usr/lib/ardour2
67 cp -a $install/usr/share/ardour2 $fs/usr/share
69 }