wok view aubio/receipt @ rev 12119

libhx, openjpeg, vlc, zlib: update bdeps (bb incompatibilities)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 13:21:44 2012 +0100 (2012-03-13)
parents abb787804be1
children 8e69cb83d354
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 cd $src
22 ./configure --prefix=/usr $CONFIGURE_ARGS &&
23 make -j1 &&
24 make -j1 install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
33 cp -a $_pkg/usr/share $fs/usr
35 }