wok diff aubio/receipt @ rev 22518

updated aubio and aubio-dev (0.3.2 -> 0.4.9)
author Hans-G?nter Theisgen
date Thu Jan 02 07:29:39 2020 +0100 (2020-01-02)
parents 11b5e93cb5f2
children 9af0e03b8ad0
line diff
     1.1 --- a/aubio/receipt	Tue Jul 05 15:34:01 2016 +0300
     1.2 +++ b/aubio/receipt	Thu Jan 02 07:29:39 2020 +0100
     1.3 @@ -1,38 +1,46 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="aubio"
     1.7 -VERSION="0.3.2"
     1.8 +VERSION="0.4.9"
     1.9  CATEGORY="multimedia"
    1.10 +TAGS="audio label multimedia"
    1.11 +SHORT_DESC="A library for audio labelling"
    1.12  MAINTAINER="jozee@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -SHORT_DESC="A library for audio labelling"
    1.15 -WEB_SITE="http://aubio.piem.org/"
    1.16 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WGET_URL="$WEB_SITE/pub/$TARBALL"
    1.18 -TAGS="audio label multimedia"
    1.19 +WEB_SITE="https://aubio.org/"
    1.20  
    1.21 -DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg \
    1.22 -libvorbis"
    1.23 -BUILD_DEPENDS="libsamplerate-dev jack-audio-connection-kit-dev \
    1.24 -fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev \
    1.25 -libvorbis-dev"
    1.26 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.27 +WGET_URL="${WEB_SITE}pub/$TARBALL"
    1.28 +
    1.29 +DEPENDS="fftw flac jack-audio-connection-kit libogg \
    1.30 +	libsamplerate libvorbis"
    1.31 +BUILD_DEPENDS="fftw fftw-dev flac-dev jack-audio-connection-kit-dev \
    1.32 +	libogg-dev libsamplerate libsamplerate-dev libsndfile-dev \
    1.33 +	libvorbis-dev"
    1.34  
    1.35  # Rules to configure and make the package.
    1.36  compile_rules()
    1.37  {
    1.38  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lm"
    1.39 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.40 -	make -j1 &&
    1.41 -	make -j1 install
    1.42  
    1.43 -	cook_pick_manpages $src/doc/*.1
    1.44 +#	0.4.9: no longer available
    1.45 +#	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.46 +
    1.47 +	make PREFIX=/usr &&
    1.48 +	make install DESTDIR=$DESTDIR
    1.49 +
    1.50 +#	0.4.9: no longer available
    1.51 +#	cook_pick_manpages $src/doc/*.1
    1.52  }
    1.53  
    1.54  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.55  genpkg_rules()
    1.56  {
    1.57 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.58 -	cp -a $install/usr/bin $fs/usr
    1.59 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.60 -	cp -a $install/usr/share/sounds $fs/usr/share
    1.61 +	mkdir -p $fs/usr/lib
    1.62 +
    1.63 +	cp -a $install/usr/bin		$fs/usr
    1.64 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.65 +
    1.66 +#	0.4.9: no longer available
    1.67 +#	cp -a $install/usr/share/sounds $fs/usr/share
    1.68  }