# HG changeset patch # User Hans-G?nter Theisgen # Date 1570374863 -3600 # Node ID 1d9749eb91c66d7aee8888d7a57ac4181f475eb8 # Parent e7a161a764c6026b41e13ab8cf9fba5570159128 updated soundtouch and soundtouch-dev (1.5.0 -> 2.1.2) diff -r e7a161a764c6 -r 1d9749eb91c6 soundtouch-dev/receipt --- a/soundtouch-dev/receipt Sun Oct 06 15:31:03 2019 +0100 +++ b/soundtouch-dev/receipt Sun Oct 06 16:14:23 2019 +0100 @@ -1,24 +1,27 @@ # SliTaz package receipt. PACKAGE="soundtouch-dev" -VERSION="1.5.0" +VERSION="2.1.2" CATEGORY="development" -SHORT_DESC="devel files for soundtouch" +SHORT_DESC="Development files for soundtouch." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL2.1" -WEB_SITE="http://www.surina.net/soundtouch/" -WANTED="soundtouch" +WEB_SITE="https://www.surina.net/soundtouch/" DEPENDS="soundtouch pkg-config" +WANTED="soundtouch" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/aclocal $fs/usr/share + # Upstream changed pkgconfig filename - ln -sf soundtouch-1.4.pc $fs/usr/lib/pkgconfig/soundtouch-1.0.pc +# ln -sf soundtouch-1.4.pc $fs/usr/lib/pkgconfig/soundtouch-1.0.pc } diff -r e7a161a764c6 -r 1d9749eb91c6 soundtouch/receipt --- a/soundtouch/receipt Sun Oct 06 15:31:03 2019 +0100 +++ b/soundtouch/receipt Sun Oct 06 16:14:23 2019 +0100 @@ -1,30 +1,37 @@ # SliTaz package receipt. PACKAGE="soundtouch" -VERSION="1.5.0" +VERSION="2.1.2" CATEGORY="multimedia" -SHORT_DESC="An audio processing library" +SHORT_DESC="An audio processing library." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL2.1" -WEB_SITE="http://www.surina.net/soundtouch/" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/$TARBALL" +WEB_SITE="https://www.surina.net/soundtouch/" + +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="https://gitlab.com/$PACKAGE/$PACKAGE/-/archive/$VERSION/$TARBALL" DEPENDS="gcc-lib-base" -BUILD_DEPENDS="libtool automake" +BUILD_DEPENDS="automake libtool" # Rules to configure and make the package. compile_rules() { - sed -i 's|/doc/|/share&|' Makefile* - patch -Np1 -i $stuff/$PACKAGE-1.4.0-mmx-sse-compile-fix.patch - ./configure --enable-shared $CONFIGURE_ARGS && make && make install +# sed -i 's|/doc/|/share&|' Makefile* +# patch -Np1 -i $stuff/$PACKAGE-1.4.0-mmx-sse-compile-fix.patch + ./configure \ + --prefix=/usr \ + --enable-shared \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }