wok rev 24818
updated libogg and libogg-dev (1.3.4 -> 1.3.5)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 23 07:51:57 2022 +0100 (2022-03-23) |
parents | facd18a500ff |
children | 6921af00a0cc |
files | libogg-dev/receipt libogg/description.txt libogg/receipt |
line diff
1.1 --- a/libogg-dev/receipt Wed Mar 23 07:31:51 2022 +0100 1.2 +++ b/libogg-dev/receipt Wed Mar 23 07:51:57 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libogg-dev" 1.7 -VERSION="1.3.4" 1.8 +VERSION="1.3.5" 1.9 CATEGORY="development" 1.10 SHORT_DESC="OGG library, development files from Xiph.org project." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -16,11 +16,8 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 mkdir -p $fs/usr/share 1.18 1.19 - cp -a $install/usr/include $fs/usr 1.20 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.21 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.22 + get_dev_files 1.23 cp -a $install/usr/share/aclocal $fs/usr/share 1.24 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libogg/description.txt Wed Mar 23 07:51:57 2022 +0100 2.3 @@ -0,0 +1,16 @@ 2.4 +Ogg is a multimedia container format, and the native file and stream 2.5 +format for the Xiph.org multimedia codecs. 2.6 + 2.7 +As with most container formats it encapsulates raw compressed data and 2.8 +allows the interleaving of audio and video data inside a single convenient 2.9 +format. Other examples of container formats are Quicktime .mov, the MPEG 2.10 +program stream, and AVI. 2.11 + 2.12 +In addition to encapsulation and interleave of multiple data streams, 2.13 +Ogg provides packet framing, error detection, and periodic timestamps for 2.14 +seeking, and in a small, bounded percentage bitrate overhead. 2.15 + 2.16 +Ogg is a stream oriented container, meaning it can be written and read in 2.17 +one pass, making it a natural fit for internet streaming and use in 2.18 +processing pipelines. This stream orientation is the major design 2.19 +difference over other file-based container formats.
3.1 --- a/libogg/receipt Wed Mar 23 07:31:51 2022 +0100 3.2 +++ b/libogg/receipt Wed Mar 23 07:51:57 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libogg" 3.7 -VERSION="1.3.4" 3.8 +VERSION="1.3.5" 3.9 CATEGORY="multimedia" 3.10 SHORT_DESC="OGG library from Xiph.org project." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 @@ -9,7 +9,7 @@ 3.13 WEB_SITE="https://www.xiph.org/ogg/" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 3.16 -WGET_URL="https://downloads.xiph.org/releases/ogg/$TARBALL" 3.17 +WGET_URL="https://ftp.osuosl.org/pub/xiph/releases/ogg/$TARBALL" 3.18 3.19 DEPENDS="glibc-base" 3.20 3.21 @@ -27,13 +27,12 @@ 3.22 compile_rules() 3.23 { 3.24 ./configure $CONFIGURE_ARGS && 3.25 - make -j1 && 3.26 - make -j1 DESTDIR=$DESTDIR install 3.27 + make && 3.28 + make install DESTDIR=$DESTDIR 3.29 } 3.30 3.31 # Rules to gen a SliTaz package suitable for Tazpkg. 3.32 genpkg_rules() 3.33 { 3.34 - mkdir -p $fs/usr/lib 3.35 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.36 + cook_copy_files *.so* 3.37 }