wok diff soundtouch/receipt @ rev 21932

updated soundtouch and soundtouch-dev (1.5.0 -> 2.1.2)
author Hans-G?nter Theisgen
date Sun Oct 06 16:14:23 2019 +0100 (2019-10-06)
parents a8e75e9bae6c
children 79be06fd31b1
line diff
     1.1 --- a/soundtouch/receipt	Wed Jul 06 16:30:34 2016 +0200
     1.2 +++ b/soundtouch/receipt	Sun Oct 06 16:14:23 2019 +0100
     1.3 @@ -1,30 +1,37 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="soundtouch"
     1.7 -VERSION="1.5.0"
     1.8 +VERSION="2.1.2"
     1.9  CATEGORY="multimedia"
    1.10 -SHORT_DESC="An audio processing library"
    1.11 +SHORT_DESC="An audio processing library."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="LGPL2.1"
    1.14 -WEB_SITE="http://www.surina.net/soundtouch/"
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WGET_URL="$WEB_SITE/$TARBALL"
    1.17 +WEB_SITE="https://www.surina.net/soundtouch/"
    1.18 +
    1.19 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.20 +WGET_URL="https://gitlab.com/$PACKAGE/$PACKAGE/-/archive/$VERSION/$TARBALL"
    1.21  
    1.22  DEPENDS="gcc-lib-base"
    1.23 -BUILD_DEPENDS="libtool automake"
    1.24 +BUILD_DEPENDS="automake libtool"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	sed -i 's|/doc/|/share&|' Makefile*
    1.30 -	patch -Np1 -i $stuff/$PACKAGE-1.4.0-mmx-sse-compile-fix.patch
    1.31 -	./configure --enable-shared $CONFIGURE_ARGS && make && make install
    1.32 +#	sed -i 's|/doc/|/share&|' Makefile*
    1.33 +#	patch -Np1 -i $stuff/$PACKAGE-1.4.0-mmx-sse-compile-fix.patch
    1.34 +	./configure		\
    1.35 +		--prefix=/usr	\
    1.36 +		--enable-shared	\
    1.37 +		$CONFIGURE_ARGS &&
    1.38 +	make &&
    1.39 +	make install
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45  	mkdir -p $fs/usr/lib
    1.46 -	cp -a $install/usr/bin $fs/usr
    1.47 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.48 +
    1.49 +	cp -a $install/usr/bin		$fs/usr
    1.50 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.51  }