wok view aubio/receipt @ rev 19274

Up cookutils (809)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jul 05 01:51:14 2016 +0300 (2016-07-05)
parents 17e313b5b9c1
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="aubio"
4 VERSION="0.3.2"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A library for audio labelling"
9 WEB_SITE="http://aubio.piem.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/pub/$TARBALL"
12 TAGS="audio label multimedia"
14 DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg \
15 libvorbis"
16 BUILD_DEPENDS="libsamplerate-dev jack-audio-connection-kit-dev \
17 fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev \
18 libvorbis-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lm"
24 ./configure --prefix=/usr $CONFIGURE_ARGS &&
25 make -j1 &&
26 make -j1 install
28 mkdir -p $install/usr/share/man/man1
29 cp -a $src/doc/*.1 $install/usr/share/man/man1
30 cook_compress_manpages
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*so* $fs/usr/lib/
39 cp -a $install/usr/share $fs/usr
40 }