# HG changeset patch # User Christophe Lincoln # Date 1393120299 -3600 # Node ID a73d738315e80e87fec6fc38ff4efb4cce27a649 # Parent c2504719b20a48d1606016cc0d8092101429dfb9 arm: add alsa and libogg suport diff -r c2504719b20a -r a73d738315e8 alsa-lib-dev/receipt --- a/alsa-lib-dev/receipt Sun Feb 23 02:23:54 2014 +0100 +++ b/alsa-lib-dev/receipt Sun Feb 23 02:51:39 2014 +0100 @@ -8,8 +8,9 @@ LICENSE="LGPL2.1" WANTED="alsa-lib" WEB_SITE="http://www.alsa-project.org/" +HOST_ARCH="i486 arm" -DEPENDS="alsa-lib pkg-config" +DEPENDS="alsa-lib" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r c2504719b20a -r a73d738315e8 alsa-lib/receipt --- a/alsa-lib/receipt Sun Feb 23 02:23:54 2014 +0100 +++ b/alsa-lib/receipt Sun Feb 23 02:51:39 2014 +0100 @@ -6,15 +6,16 @@ SHORT_DESC="Alsa sound libraries." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" -DEPENDS="linux" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.alsa-project.org/" WGET_URL="ftp://ftp.alsa-project.org/pub/lib/$TARBALL" +HOST_ARCH="i486 arm" + +DEPENDS="linux" # Rules to configure and make the package. compile_rules() { - cd $src ./configure --disable-python \ $CONFIGURE_ARGS && make && make -j1 install diff -r c2504719b20a -r a73d738315e8 alsa-plugins/receipt --- a/alsa-plugins/receipt Sun Feb 23 02:23:54 2014 +0100 +++ b/alsa-plugins/receipt Sun Feb 23 02:51:39 2014 +0100 @@ -1,15 +1,14 @@ # SliTaz package receipt. PACKAGE="alsa-plugins" -VERSION="1.0.26" +VERSION="1.0.27" CATEGORY="multimedia" SHORT_DESC="Alsa sound system additionnal plugins." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.alsa-project.org/" -#WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL" -WGET_URL="http://alsa.cybermirror.org/plugins/$TARBALL" +WGET_URL="ftp://ftp.alsa-project.org/pub/plugins/$TARBALL" DEPENDS="alsa-lib libsamplerate speex" BUILD_DEPENDS="pkg-config alsa-lib-dev libsamplerate-dev speex-dev" diff -r c2504719b20a -r a73d738315e8 alsa-utils/receipt --- a/alsa-utils/receipt Sun Feb 23 02:23:54 2014 +0100 +++ b/alsa-utils/receipt Sun Feb 23 02:51:39 2014 +0100 @@ -10,6 +10,7 @@ WEB_SITE="http://www.alsa-project.org/" WGET_URL="ftp://ftp.alsa-project.org/pub/utils/$TARBALL" CONFIG_FILES="/var/lib/alsa/asound.state" +HOST_ARCH="i486 arm" DEPENDS="alsa-lib ncurses util-linux-getopt" BUILD_DEPENDS="alsa-lib-dev ncurses-dev" @@ -17,11 +18,7 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ --disable-xmlto \ $CONFIGURE_ARGS && make && diff -r c2504719b20a -r a73d738315e8 libogg-dev/receipt --- a/libogg-dev/receipt Sun Feb 23 02:23:54 2014 +0100 +++ b/libogg-dev/receipt Sun Feb 23 02:51:39 2014 +0100 @@ -1,15 +1,16 @@ # SliTaz package receipt. PACKAGE="libogg-dev" -VERSION="1.3.0" +VERSION="1.3.1" CATEGORY="development" SHORT_DESC="OGG library devel files from Xiph.org project." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" WANTED="libogg" WEB_SITE="http://www.xiph.org/" +HOST_ARCH="i486 arm" -DEPENDS="libogg pkg-config" +DEPENDS="libogg" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() diff -r c2504719b20a -r a73d738315e8 libogg/receipt --- a/libogg/receipt Sun Feb 23 02:23:54 2014 +0100 +++ b/libogg/receipt Sun Feb 23 02:51:39 2014 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libogg" -VERSION="1.3.0" +VERSION="1.3.1" CATEGORY="multimedia" SHORT_DESC="OGG library from Xiph.org project." MAINTAINER="pankso@slitaz.org" @@ -9,16 +9,15 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WEB_SITE="http://www.xiph.org/" WGET_URL="http://downloads.xiph.org/releases/ogg/$TARBALL" +HOST_ARCH="i486 arm" DEPENDS="glibc-base" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS - make + ./configure $CONFIGURE_ARGS && + make && make -j1 DESTDIR=$DESTDIR install }