# HG changeset patch # User Christophe Lincoln # Date 1203881840 -3600 # Node ID 4f833a54f594a048dec75b47eac62c313a7a3428 # Parent 54b059c3da8e5879d757db16572cb50de7e17473 UP: all alsa pkgs (1.0.16) and add alsa-plugins diff -r 54b059c3da8e -r 4f833a54f594 alsa-lib-dev/receipt --- a/alsa-lib-dev/receipt Sun Feb 24 20:35:09 2008 +0100 +++ b/alsa-lib-dev/receipt Sun Feb 24 20:37:20 2008 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="alsa-lib-dev" -VERSION="1.0.15" +VERSION="1.0.16" CATEGORY="development" SHORT_DESC="Alsa sound libraries devel files." MAINTAINER="pankso@slitaz.org" diff -r 54b059c3da8e -r 4f833a54f594 alsa-lib/receipt --- a/alsa-lib/receipt Sun Feb 24 20:35:09 2008 +0100 +++ b/alsa-lib/receipt Sun Feb 24 20:37:20 2008 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="alsa-lib" -VERSION="1.0.15" +VERSION="1.0.16" CATEGORY="multimedia" SHORT_DESC="Alsa sound libraries." MAINTAINER="pankso@slitaz.org" @@ -14,8 +14,10 @@ compile_rules() { cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS + ./configure \ + --prefix=/usr \ + --disable-python \ + $CONFIGURE_ARGS make make DESTDIR=$PWD/_pkg install } @@ -28,10 +30,6 @@ cp -a $_pkg/usr/lib/*.so* $fs/usr/lib cp -a $_pkg/usr/lib/alsa-lib $fs/usr/lib cp -a $_pkg/usr/share/alsa $fs/usr/share - rm $fs/usr/lib/alsa-lib/smixer/*.*a - strip --strip-unneeded $fs/usr/lib/* 2>/dev/null - strip --strip-unneeded $fs/usr/lib/alsa-lib/smixer/* - strip -s $fs/usr/bin/* } diff -r 54b059c3da8e -r 4f833a54f594 alsa-plugins/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/alsa-plugins/receipt Sun Feb 24 20:37:20 2008 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="alsa-plugins" +VERSION="1.0.16" +CATEGORY="multimedia" +SHORT_DESC="Alsa sound system additionnal plugins." +MAINTAINER="pankso@slitaz.org" +DEPENDS="alsa-lib" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.alsa-project.org/" +WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/alsa-lib + cp -a $_pkg/usr/lib/alsa-lib/*.so $fs/usr/lib/alsa-lib +} + diff -r 54b059c3da8e -r 4f833a54f594 alsa-utils/receipt --- a/alsa-utils/receipt Sun Feb 24 20:35:09 2008 +0100 +++ b/alsa-utils/receipt Sun Feb 24 20:37:20 2008 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="alsa-utils" -VERSION="1.0.15" +VERSION="1.0.16" CATEGORY="multimedia" SHORT_DESC="Alsa sound system utilities et config tools." MAINTAINER="pankso@slitaz.org" @@ -24,23 +24,20 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share + mkdir -p $fs/usr cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/sbin $fs/usr chmod 755 $fs/usr/sbin/* - cp -a $_pkg/usr/share/alsa $fs/usr/share + + # Remove speaker-test (18 Ko and needs sounds) + rm $fs/usr/bin/speaker-test # For conf we need /var/tmp mkdir -p $fs/var/tmp chmod 1777 $fs/var/tmp - # Strip me this and remove alsaconf (use soundconf). - strip -s $fs/usr/bin/* + # Remove alsaconf (use soundconf) + Getopt precomp needed by soundconf. rm $fs/usr/sbin/alsaconf - strip -s $fs/usr/sbin/* - - # Getopt precomp needed by alsaconf (and change /bin/bash to sh : - # do not work, we need Bash or modify alsaconf). install -g root -o root -m 0755 stuff/getopt $fs/usr/bin }