wok diff libsamplerate/receipt @ rev 21854

updated rubygems (1.8.10 -> 3.0.6)
author Hans-G?nter Theisgen
date Tue Sep 17 15:19:26 2019 +0100 (2019-09-17)
parents f9588901ecdc
children ede1d184d5c5
line diff
     1.1 --- a/libsamplerate/receipt	Wed Mar 05 03:31:25 2014 +0100
     1.2 +++ b/libsamplerate/receipt	Tue Sep 17 15:19:26 2019 +0100
     1.3 @@ -1,27 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libsamplerate"
     1.7 -VERSION="0.1.8"
     1.8 +VERSION="0.1.9"
     1.9  CATEGORY="multimedia"
    1.10  SHORT_DESC="Sample Rate Converter for audio."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://www.mega-nerd.com/SRC/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.mega-nerd.com/SRC/"
    1.17  WGET_URL="http://www.mega-nerd.com/SRC/$TARBALL"
    1.18 -HOST_ARCH="i486 arm"
    1.19  
    1.20  DEPENDS=""
    1.21  
    1.22 +HOST_ARCH="i486 arm"
    1.23 +
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	cd $src
    1.28 -	./configure \
    1.29 -		--prefix=/usr \
    1.30 -		--mandir=/usr/share/man \
    1.31 +	./configure			\
    1.32 +		--prefix=/usr		\
    1.33 +		--mandir=/usr/share/man	\
    1.34  		$CONFIGURE_ARGS &&
    1.35 -	make &&
    1.36 +	make -j 1 &&
    1.37  	make DESTDIR=$DESTDIR install
    1.38  }
    1.39  
    1.40 @@ -29,7 +30,7 @@
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr/lib
    1.44 -	cp -a $install/usr/bin $fs/usr
    1.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib 
    1.46 +
    1.47 +	cp -a $install/usr/bin		$fs/usr
    1.48 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib 
    1.49  }
    1.50 -