wok diff aubio/receipt @ rev 7345
Up: libxml2 to 2.7.8.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Nov 21 18:30:03 2010 +0000 (2010-11-21) |
parents | |
children | abb787804be1 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/aubio/receipt Sun Nov 21 18:30:03 2010 +0000 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="aubio" 1.7 +VERSION="0.3.2" 1.8 +CATEGORY="multimedia" 1.9 +MAINTAINER="jozee@slitaz.org" 1.10 +SHORT_DESC="A library for audio labelling" 1.11 +BUILD_DEPENDS=" libsamplerate-dev jack-audio-connection-kit-dev fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev libvorbis-dev" 1.12 +WEB_SITE="http://aubio.piem.org/" 1.13 +DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg libvorbis" 1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 +WGET_URL="$WEB_SITE/pub/$TARBALL" 1.16 +TAGS="audio label multimedia" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 + 1.20 +compile_rules() { 1.21 + cd $src 1.22 + ./configure --prefix=/usr && 1.23 + make && 1.24 + make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/lib 1.31 + cp -a $_pkg/usr/bin $fs/usr 1.32 + cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ 1.33 + cp -a $_pkg/usr/share $fs/usr 1.34 + 1.35 +}