wok diff alsa-lib/receipt @ rev 25066

updated alsa-lib, alsa-lib-dev and alsa-utils (1.2.2 -> 1.2.7)
author Hans-G?nter Theisgen
date Fri Jun 10 13:35:13 2022 +0100 (24 months ago)
parents 68cf96abc146
children 26ca23936f62
line diff
     1.1 --- a/alsa-lib/receipt	Mon Jul 05 15:00:07 2021 +0000
     1.2 +++ b/alsa-lib/receipt	Fri Jun 10 13:35:13 2022 +0100
     1.3 @@ -1,18 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="alsa-lib"
     1.7 -VERSION="1.2.2"
     1.8 +VERSION="1.2.7"
     1.9  CATEGORY="multimedia"
    1.10  SHORT_DESC="Alsa sound libraries."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="LGPL2.1"
    1.13 +WEB_SITE="https://www.alsa-project.org/wiki/Main_Page"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WEB_SITE="http://www.alsa-project.org/"
    1.17  WGET_URL="ftp://ftp.alsa-project.org/pub/lib/$TARBALL"
    1.18 -HOST_ARCH="i486 arm"
    1.19  
    1.20  DEPENDS="linux"
    1.21  
    1.22 +HOST_ARCH="i486 arm"
    1.23 +
    1.24  current_version()
    1.25  {
    1.26  	wget -O - ${WEB_SITE}wiki/Download 2>/dev/null | \
    1.27 @@ -22,9 +24,11 @@
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure --disable-python \
    1.32 +	./configure			\
    1.33 +		--disable-python	\
    1.34  		$CONFIGURE_ARGS &&
    1.35 -	make &&	make -j1 install
    1.36 +	make &&
    1.37 +	make install
    1.38  }
    1.39  
    1.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.41 @@ -32,10 +36,12 @@
    1.42  {
    1.43  	# Enable software mixing for multiple audio streams
    1.44  	mkdir -p $fs/etc
    1.45 -	cp $stuff/asound.conf $fs/etc
    1.46 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.47 -	cp -a $install/usr/bin $fs/usr
    1.48 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.49 -	cp -a $install/usr/share/alsa $fs/usr/share
    1.50 +	cp $stuff/asound.conf		$fs/etc
    1.51 +
    1.52 +	mkdir -p $fs/usr/lib
    1.53 +	mkdir -p $fs/usr/share
    1.54 +
    1.55 +	cp -a $install/usr/bin		$fs/usr
    1.56 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.57 +	cp -a $install/usr/share/alsa	$fs/usr/share
    1.58  }
    1.59 -