# HG changeset patch # User Hans-G?nter Theisgen # Date 1648018317 -3600 # Node ID 8d9bed32e85757bc12f0b04875ed84cd1fc82fbd # Parent facd18a500ffec3aef7a5244cd8de6046df03b7f updated libogg and libogg-dev (1.3.4 -> 1.3.5) diff -r facd18a500ff -r 8d9bed32e857 libogg-dev/receipt --- a/libogg-dev/receipt Wed Mar 23 07:31:51 2022 +0100 +++ b/libogg-dev/receipt Wed Mar 23 07:51:57 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libogg-dev" -VERSION="1.3.4" +VERSION="1.3.5" CATEGORY="development" SHORT_DESC="OGG library, development files from Xiph.org project." MAINTAINER="pankso@slitaz.org" @@ -16,11 +16,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib mkdir -p $fs/usr/share - 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 + get_dev_files cp -a $install/usr/share/aclocal $fs/usr/share } diff -r facd18a500ff -r 8d9bed32e857 libogg/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libogg/description.txt Wed Mar 23 07:51:57 2022 +0100 @@ -0,0 +1,16 @@ +Ogg is a multimedia container format, and the native file and stream +format for the Xiph.org multimedia codecs. + +As with most container formats it encapsulates raw compressed data and +allows the interleaving of audio and video data inside a single convenient +format. Other examples of container formats are Quicktime .mov, the MPEG +program stream, and AVI. + +In addition to encapsulation and interleave of multiple data streams, +Ogg provides packet framing, error detection, and periodic timestamps for +seeking, and in a small, bounded percentage bitrate overhead. + +Ogg is a stream oriented container, meaning it can be written and read in +one pass, making it a natural fit for internet streaming and use in +processing pipelines. This stream orientation is the major design +difference over other file-based container formats. diff -r facd18a500ff -r 8d9bed32e857 libogg/receipt --- a/libogg/receipt Wed Mar 23 07:31:51 2022 +0100 +++ b/libogg/receipt Wed Mar 23 07:51:57 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libogg" -VERSION="1.3.4" +VERSION="1.3.5" CATEGORY="multimedia" SHORT_DESC="OGG library from Xiph.org project." MAINTAINER="pankso@slitaz.org" @@ -9,7 +9,7 @@ WEB_SITE="https://www.xiph.org/ogg/" TARBALL="$PACKAGE-$VERSION.tar.xz" -WGET_URL="https://downloads.xiph.org/releases/ogg/$TARBALL" +WGET_URL="https://ftp.osuosl.org/pub/xiph/releases/ogg/$TARBALL" DEPENDS="glibc-base" @@ -27,13 +27,12 @@ compile_rules() { ./configure $CONFIGURE_ARGS && - make -j1 && - make -j1 DESTDIR=$DESTDIR install + 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* }