# HG changeset patch # User Hans-G?nter Theisgen # Date 1655301776 -3600 # Node ID c4b5fb10fb0e07c513e37dd501b03689b5ac093d # Parent ae58b675745dfcf3d0e2d908ae334895403c52b9 updated opusfile and opusfile-dev (0.11 -> 0.12) diff -r ae58b675745d -r c4b5fb10fb0e opusfile-dev/receipt --- a/opusfile-dev/receipt Wed Jun 15 14:50:09 2022 +0100 +++ b/opusfile-dev/receipt Wed Jun 15 15:02:56 2022 +0100 @@ -1,21 +1,20 @@ # SliTaz package receipt. PACKAGE="opusfile-dev" -VERSION="0.11" +VERSION="0.12" CATEGORY="development" -SHORT_DESC="Opus streams in the Ogg container I/O, development files" +SHORT_DESC="Opus streams in the Ogg container I/O, development files." MAINTAINER="pascal.bellard@slitaz.org" -LICENSE="GPL2" +LICENSE="BSD" WEB_SITE="https://opus-codec.org/" + +DEPENDS="openssl-dev opus-dev opusfile pkg-config" WANTED="opusfile" -DEPENDS="opusfile openssl-dev opus-dev pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r ae58b675745d -r c4b5fb10fb0e opusfile/receipt --- a/opusfile/receipt Wed Jun 15 14:50:09 2022 +0100 +++ b/opusfile/receipt Wed Jun 15 15:02:56 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="opusfile" -VERSION="0.11" +VERSION="0.12" CATEGORY="multimedia" -SHORT_DESC="Opus streams in the Ogg container I/O" +SHORT_DESC="Opus streams in the Ogg container I/O." MAINTAINER="pascal.bellard@slitaz.org" -LICENSE="GPL2" +LICENSE="BSD" +WEB_SITE="https://opus-codec.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://opus-codec.org/" -WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL" +WGET_URL="https://github.com/xiph/$PACKAGE/archive/v$VERSION.tar.gz" -DEPENDS="libssl libogg opus" -BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config" +DEPENDS="libogg libssl opus" +BUILD_DEPENDS="automake libogg libogg-dev libtool openssl-dev opus-dev pkg-config" # What is the latest version available today? current_version() @@ -23,14 +24,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr \ - $CONFIGURE_ARGS && \ - make && make DESTDIR=$DESTDIR install + ./autogen.sh && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }