# HG changeset patch # User Hans-G?nter Theisgen # Date 1583165110 -3600 # Node ID 2443e7e7a2db43446a1496d1d3263fdc6db142c1 # Parent d2f1ecac9d8141ac4aa2480ffdbbba33c93a20c5 updated libao and libao-dev (1.1.0 -> 1.2.2) diff -r d2f1ecac9d81 -r 2443e7e7a2db libao-dev/receipt --- a/libao-dev/receipt Mon Mar 02 16:49:47 2020 +0100 +++ b/libao-dev/receipt Mon Mar 02 17:05:10 2020 +0100 @@ -1,26 +1,27 @@ # SliTaz package receipt. PACKAGE="libao-dev" -VERSION="1.1.0" +VERSION="1.2.2" CATEGORY="development" -SHORT_DESC="libao devel files" +SHORT_DESC="libao development files." MAINTAINER="rj.rohit@gmail.com" LICENSE="GPL2" -WANTED="libao" -WEB_SITE="https://downloads.xiph.org/releases/ao/" -HOST_ARCH="i486 arm" +WEB_SITE="https://xiph.org/ao/" DEPENDS="pkg-config" +WANTED="libao" + +HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p \ - $fs/usr/lib/ao/plugins-4 \ - $fs/usr/share - cp -a $install/usr/lib/ao/plugins-4/*.la $fs/usr/lib/ao/plugins-4 - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/share/aclocal $fs/usr/share + mkdir -p $fs/usr/lib/ao/plugins-4 + mkdir -p $fs/usr/share + + cp -a $install/usr/lib/ao/plugins-4/*.la $fs/usr/lib/ao/plugins-4 + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/share/aclocal $fs/usr/share } diff -r d2f1ecac9d81 -r 2443e7e7a2db libao/receipt --- a/libao/receipt Mon Mar 02 16:49:47 2020 +0100 +++ b/libao/receipt Mon Mar 02 17:05:10 2020 +0100 @@ -1,35 +1,42 @@ # SliTaz package receipt. PACKAGE="libao" -VERSION="1.1.0" +VERSION="1.2.2" CATEGORY="multimedia" -SHORT_DESC="Cross-platform audio output library and plugins" +SHORT_DESC="Cross-platform audio output library and plugins." MAINTAINER="rj.rohit@gmail.com" LICENSE="GPL2" +WEB_SITE="https://xiph.org/ao/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://downloads.xiph.org/releases/ao/" -WGET_URL="$WEB_SITE/$TARBALL" +WGET_URL="https://github.com/xiph/$PACKAGE/archive/$VERSION.tar.gz" + +DEPENDS="alsa-lib glibc-base" +BUILD_DEPENDS="alsa-lib-dev autoconf automake libtool" + HOST_ARCH="i486 arm" -DEPENDS="glibc-base alsa-lib" -BUILD_DEPENDS="alsa-lib-dev" - # Rules to configure and make the package. compile_rules() { - ./configure \ - --enable-alsa09 \ - --disable-arts \ + ./autogen.sh && + ./configure \ + --enable-alsa09 \ + --disable-arts \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/ao/plugins-4 $fs/etc - cp -a $install/usr/lib/ao/plugins-4/*.so $fs/usr/lib/ao/plugins-4 - cp -a $install/usr/lib/*.so* $fs/usr/lib - # Add conf file - cp -a $stuff/libao.conf $fs/etc + mkdir -p $fs/usr/lib/ao/plugins-4 + mkdir -p $fs/etc + + cp -a $install/usr/lib/ao/plugins-4/*.so $fs/usr/lib/ao/plugins-4 + cp -a $install/usr/lib/*.so* $fs/usr/lib + + # Add configuration file + cp -a $stuff/libao.conf $fs/etc }