wok view aubio/receipt @ rev 13574

devede, jabberd2: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 05 09:46:13 2012 +0100 (2012-11-05)
parents 8e69cb83d354
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="aubio"
4 VERSION="0.3.2"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A library for audio labelling"
8 WEB_SITE="http://aubio.piem.org/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$WEB_SITE/pub/$TARBALL"
11 TAGS="audio label multimedia"
13 DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg \
14 libvorbis"
15 BUILD_DEPENDS="libsamplerate-dev jack-audio-connection-kit-dev \
16 fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev \
17 libvorbis-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 export LDFLAGS="-Wl,--copy-dt-needed-entries -lm"
24 ./configure --prefix=/usr $CONFIGURE_ARGS &&
25 make -j1 &&
26 make -j1 install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
35 cp -a $_pkg/usr/share $fs/usr
37 }