# HG changeset patch # User Pascal Bellard # Date 1541172335 -3600 # Node ID cef3758eccf64a727b88d8a068585ed000b5f21c # Parent f0484014527d474c4ed41e98a9207d44f66bab87 Add openfile & libopusenc diff -r f0484014527d -r cef3758eccf6 libopusenc-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libopusenc-dev/receipt Fri Nov 02 16:25:35 2018 +0100 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libopusenc-dev" +VERSION="0.2.1" +CATEGORY="development" +SHORT_DESC="High-level Opus encoding library, development files" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +WEB_SITE="http://opus-codec.org/" +WANTED="libopusenc" + +DEPENDS="libopusenc pkgconfig" + +# 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 +} diff -r f0484014527d -r cef3758eccf6 libopusenc/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libopusenc/receipt Fri Nov 02 16:25:35 2018 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="libopusenc" +VERSION="0.2.1" +CATEGORY="multimedia" +SHORT_DESC="High-level Opus encoding library" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://opus-codec.org/" +WGET_URL="https://archive.mozilla.org/pub/opus/$TARBALL" + +DEPENDS="opus" +BUILD_DEPENDS="opus-dev pkg-config" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && \ + make && make DESTDIR=$DESTDIR install +} + +# 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 +} diff -r f0484014527d -r cef3758eccf6 opus-tools/receipt --- a/opus-tools/receipt Fri Nov 02 15:37:03 2018 +0100 +++ b/opus-tools/receipt Fri Nov 02 16:25:35 2018 +0100 @@ -10,8 +10,9 @@ WEB_SITE="http://opus-codec.org/" WGET_URL="https://archive.mozilla.org/pub/opus/$TARBALL" -DEPENDS="libogg flac" -BUILD_DEPENDS="libogg libogg-dev opus-dev pkg-config flac-dev" +DEPENDS="libogg flac opusfile libopusenc" +BUILD_DEPENDS="libogg libogg-dev opus-dev pkg-config flac-dev \ +opusfile-dev libopusenc-dev" # Rules to configure and make the package. compile_rules() diff -r f0484014527d -r cef3758eccf6 opusfile-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/opusfile-dev/receipt Fri Nov 02 16:25:35 2018 +0100 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="opusfile-dev" +VERSION="0.11" +CATEGORY="development" +SHORT_DESC="Opus streams in the Ogg container I/O, development files" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +WEB_SITE="http://opus-codec.org/" +WANTED="opusfile" + +DEPENDS="opusfile openssl-dev opus-dev pkgconfig" + +# 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 +} diff -r f0484014527d -r cef3758eccf6 opusfile/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/opusfile/receipt Fri Nov 02 16:25:35 2018 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="opusfile" +VERSION="0.11" +CATEGORY="multimedia" +SHORT_DESC="Opus streams in the Ogg container I/O" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://opus-codec.org/" +WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL" + +DEPENDS="libssl libogg opus" +BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && \ + make && make DESTDIR=$DESTDIR install +} + +# 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 +}