wok view ardour/receipt @ rev 13313

freerdp: enable pcsc support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 29 13:14:15 2012 +0200 (2012-08-29)
parents d3a1409d31fa
children fc917d308352
line source
1 # SliTaz package receipt.
3 PACKAGE="ardour"
4 VERSION="2.8.12"
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"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 sed -i '/-O3/d' SConstruct
26 mkdir -p $DESTDIR
28 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
29 PREFIX=/usr \
30 NLS=1 \
31 FREEDESKTOP=0 \
32 SYSLIBS=1 \
33 VST=0 \
34 WIIMOTE=0 \
35 LV2=0 \
36 FREESOUND=1 \
37 LIBLO=1 \
38 AUBIO=1 \
39 TRANZPORT=1 \
40 DIST_LIBDIR=lib
42 scons ${MAKEFLAGS} ARCH="${CFLAGS}" \
43 PREFIX=/usr \
44 NLS=1 \
45 FREEDESKTOP=0 \
46 SYSLIBS=1 \
47 VST=0 \
48 WIIMOTE=0 \
49 LV2=0 \
50 FREESOUND=1 \
51 LIBLO=1 \
52 AUBIO=1 \
53 TRANZPORT=1 \
54 DIST_LIBDIR=lib \
55 DESTDIR=$DESTDIR install
57 }
59 # Rules to gen a SliTaz package suitable for Tazpkg.
60 genpkg_rules()
61 {
62 mkdir -p $fs/usr/lib/ardour2 $fs/usr/share
63 cp -a $_pkg/usr/bin $fs/usr
64 cp -a $_pkg/usr/lib/ardour2/*so* $fs/usr/lib/ardour2
65 cp -a $_pkg/usr/share/ardour2 $fs/usr/share
67 }