wok-6.x rev 256
UP: all alsa pkgs (1.0.16) and add alsa-plugins
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Feb 24 20:37:20 2008 +0100 (2008-02-24) |
parents | 54b059c3da8e |
children | 8d2a4c25262e |
files | alsa-lib-dev/receipt alsa-lib/receipt alsa-plugins/receipt alsa-utils/receipt |
line diff
1.1 --- a/alsa-lib-dev/receipt Sun Feb 24 20:35:09 2008 +0100 1.2 +++ b/alsa-lib-dev/receipt Sun Feb 24 20:37:20 2008 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="alsa-lib-dev" 1.7 -VERSION="1.0.15" 1.8 +VERSION="1.0.16" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Alsa sound libraries devel files." 1.11 MAINTAINER="pankso@slitaz.org"
2.1 --- a/alsa-lib/receipt Sun Feb 24 20:35:09 2008 +0100 2.2 +++ b/alsa-lib/receipt Sun Feb 24 20:37:20 2008 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="alsa-lib" 2.7 -VERSION="1.0.15" 2.8 +VERSION="1.0.16" 2.9 CATEGORY="multimedia" 2.10 SHORT_DESC="Alsa sound libraries." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 @@ -14,8 +14,10 @@ 2.13 compile_rules() 2.14 { 2.15 cd $src 2.16 - ./configure --prefix=/usr --infodir=/usr/share/info \ 2.17 - --mandir=/usr/share/man $CONFIGURE_ARGS 2.18 + ./configure \ 2.19 + --prefix=/usr \ 2.20 + --disable-python \ 2.21 + $CONFIGURE_ARGS 2.22 make 2.23 make DESTDIR=$PWD/_pkg install 2.24 } 2.25 @@ -28,10 +30,6 @@ 2.26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.27 cp -a $_pkg/usr/lib/alsa-lib $fs/usr/lib 2.28 cp -a $_pkg/usr/share/alsa $fs/usr/share 2.29 - 2.30 rm $fs/usr/lib/alsa-lib/smixer/*.*a 2.31 - strip --strip-unneeded $fs/usr/lib/* 2>/dev/null 2.32 - strip --strip-unneeded $fs/usr/lib/alsa-lib/smixer/* 2.33 - strip -s $fs/usr/bin/* 2.34 } 2.35
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/alsa-plugins/receipt Sun Feb 24 20:37:20 2008 +0100 3.3 @@ -0,0 +1,30 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="alsa-plugins" 3.7 +VERSION="1.0.16" 3.8 +CATEGORY="multimedia" 3.9 +SHORT_DESC="Alsa sound system additionnal plugins." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="alsa-lib" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.13 +WEB_SITE="http://www.alsa-project.org/" 3.14 +WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL" 3.15 + 3.16 +# Rules to configure and make the package. 3.17 +compile_rules() 3.18 +{ 3.19 + cd $src 3.20 + ./configure \ 3.21 + --prefix=/usr \ 3.22 + $CONFIGURE_ARGS 3.23 + make 3.24 + make DESTDIR=$PWD/_pkg install 3.25 +} 3.26 + 3.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.28 +genpkg_rules() 3.29 +{ 3.30 + mkdir -p $fs/usr/lib/alsa-lib 3.31 + cp -a $_pkg/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib 3.32 +} 3.33 +
4.1 --- a/alsa-utils/receipt Sun Feb 24 20:35:09 2008 +0100 4.2 +++ b/alsa-utils/receipt Sun Feb 24 20:37:20 2008 +0100 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="alsa-utils" 4.7 -VERSION="1.0.15" 4.8 +VERSION="1.0.16" 4.9 CATEGORY="multimedia" 4.10 SHORT_DESC="Alsa sound system utilities et config tools." 4.11 MAINTAINER="pankso@slitaz.org" 4.12 @@ -24,23 +24,20 @@ 4.13 # Rules to gen a SliTaz package suitable for Tazpkg. 4.14 genpkg_rules() 4.15 { 4.16 - mkdir -p $fs/usr/share 4.17 + mkdir -p $fs/usr 4.18 cp -a $_pkg/usr/bin $fs/usr 4.19 cp -a $_pkg/usr/sbin $fs/usr 4.20 chmod 755 $fs/usr/sbin/* 4.21 - cp -a $_pkg/usr/share/alsa $fs/usr/share 4.22 + 4.23 + # Remove speaker-test (18 Ko and needs sounds) 4.24 + rm $fs/usr/bin/speaker-test 4.25 4.26 # For conf we need /var/tmp 4.27 mkdir -p $fs/var/tmp 4.28 chmod 1777 $fs/var/tmp 4.29 4.30 - # Strip me this and remove alsaconf (use soundconf). 4.31 - strip -s $fs/usr/bin/* 4.32 + # Remove alsaconf (use soundconf) + Getopt precomp needed by soundconf. 4.33 rm $fs/usr/sbin/alsaconf 4.34 - strip -s $fs/usr/sbin/* 4.35 - 4.36 - # Getopt precomp needed by alsaconf (and change /bin/bash to sh : 4.37 - # do not work, we need Bash or modify alsaconf). 4.38 install -g root -o root -m 0755 stuff/getopt $fs/usr/bin 4.39 } 4.40