wok-current 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 | f97b44376525 |
children | 190336ee1571 |
files | aubio-dev/receipt aubio/receipt |
line diff
1.1 --- a/aubio-dev/receipt Wed Jan 01 17:10:16 2020 +0100 1.2 +++ b/aubio-dev/receipt Thu Jan 02 07:29:39 2020 +0100 1.3 @@ -1,21 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="aubio-dev" 1.7 -VERSION="0.3.2" 1.8 +VERSION="0.4.9" 1.9 CATEGORY="development" 1.10 +SHORT_DESC="aubio devel files" 1.11 MAINTAINER="jozee@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -SHORT_DESC="aubio devel files" 1.14 -WEB_SITE="http://aubio.piem.org/" 1.15 -WANTED="aubio" 1.16 +WEB_SITE="https://aubio.org/" 1.17 1.18 DEPENDS="pkg-config" 1.19 +WANTED="aubio" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 + 1.29 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.30 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 + cp -a $install/usr/include $fs/usr 1.32 }
2.1 --- a/aubio/receipt Wed Jan 01 17:10:16 2020 +0100 2.2 +++ b/aubio/receipt Thu Jan 02 07:29:39 2020 +0100 2.3 @@ -1,38 +1,46 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="aubio" 2.7 -VERSION="0.3.2" 2.8 +VERSION="0.4.9" 2.9 CATEGORY="multimedia" 2.10 +TAGS="audio label multimedia" 2.11 +SHORT_DESC="A library for audio labelling" 2.12 MAINTAINER="jozee@slitaz.org" 2.13 LICENSE="GPL2" 2.14 -SHORT_DESC="A library for audio labelling" 2.15 -WEB_SITE="http://aubio.piem.org/" 2.16 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WGET_URL="$WEB_SITE/pub/$TARBALL" 2.18 -TAGS="audio label multimedia" 2.19 +WEB_SITE="https://aubio.org/" 2.20 2.21 -DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg \ 2.22 -libvorbis" 2.23 -BUILD_DEPENDS="libsamplerate-dev jack-audio-connection-kit-dev \ 2.24 -fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev \ 2.25 -libvorbis-dev" 2.26 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.27 +WGET_URL="${WEB_SITE}pub/$TARBALL" 2.28 + 2.29 +DEPENDS="fftw flac jack-audio-connection-kit libogg \ 2.30 + libsamplerate libvorbis" 2.31 +BUILD_DEPENDS="fftw fftw-dev flac-dev jack-audio-connection-kit-dev \ 2.32 + libogg-dev libsamplerate libsamplerate-dev libsndfile-dev \ 2.33 + libvorbis-dev" 2.34 2.35 # Rules to configure and make the package. 2.36 compile_rules() 2.37 { 2.38 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lm" 2.39 - ./configure --prefix=/usr $CONFIGURE_ARGS && 2.40 - make -j1 && 2.41 - make -j1 install 2.42 2.43 - cook_pick_manpages $src/doc/*.1 2.44 +# 0.4.9: no longer available 2.45 +# ./configure --prefix=/usr $CONFIGURE_ARGS && 2.46 + 2.47 + make PREFIX=/usr && 2.48 + make install DESTDIR=$DESTDIR 2.49 + 2.50 +# 0.4.9: no longer available 2.51 +# cook_pick_manpages $src/doc/*.1 2.52 } 2.53 2.54 # Rules to gen a SliTaz package suitable for Tazpkg. 2.55 genpkg_rules() 2.56 { 2.57 - mkdir -p $fs/usr/lib $fs/usr/share 2.58 - cp -a $install/usr/bin $fs/usr 2.59 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.60 - cp -a $install/usr/share/sounds $fs/usr/share 2.61 + mkdir -p $fs/usr/lib 2.62 + 2.63 + cp -a $install/usr/bin $fs/usr 2.64 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.65 + 2.66 +# 0.4.9: no longer available 2.67 +# cp -a $install/usr/share/sounds $fs/usr/share 2.68 }