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