# HG changeset patch # User Hans-G?nter Theisgen # Date 1655303116 -3600 # Node ID 1b762db897fb0230eac9b9864850a5ec69d3d952 # Parent c4b5fb10fb0e07c513e37dd501b03689b5ac093d updated orc and orc-dev (0.4.29 -> 0.4.32) diff -r c4b5fb10fb0e -r 1b762db897fb opusfile/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/opusfile/description.txt Wed Jun 15 15:25:16 2022 +0100 @@ -0,0 +1,7 @@ +The opusfile library provides seeking, decode, and playback +of Opus streams in the Ogg container (.opus files) including +over http(s) on posix and windows systems. + +Opusfile depends on libopus and libogg. +The included opusurl library for http(s) access depends on +opusfile and openssl. diff -r c4b5fb10fb0e -r 1b762db897fb orc-dev/receipt --- a/orc-dev/receipt Wed Jun 15 15:02:56 2022 +0100 +++ b/orc-dev/receipt Wed Jun 15 15:25:16 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="orc-dev" -VERSION="0.4.29" +VERSION="0.4.32" CATEGORY="development" SHORT_DESC="Oil runtime compiler - development files." MAINTAINER="domcox@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/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib/ - cp -a $install/usr/share $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_folders share + cook_copy_files *.*a } diff -r c4b5fb10fb0e -r 1b762db897fb orc/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/orc/description.txt Wed Jun 15 15:25:16 2022 +0100 @@ -0,0 +1,12 @@ +Orc is basically a simplified assembly language for data processing +(no loops, jumps etc.), it's supposed to map to SIMD instructions on +various architectures curently there are two things: + +- liborc, which is a JIT compiler that will at run-time take orc code + (in some byte format) and generate machine code for the architecture + in question on the fly and then execute that whenever there's a + function call +- we have C backup functions as .c files in the gstreamer source code, + which are also compiled in when orc can't compile some code (for + various reasons), or liborc is not available, then the C backup + function will be used that's the current state of things. diff -r c4b5fb10fb0e -r 1b762db897fb orc/receipt --- a/orc/receipt Wed Jun 15 15:02:56 2022 +0100 +++ b/orc/receipt Wed Jun 15 15:25:16 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="orc" -VERSION="0.4.29" +VERSION="0.4.32" CATEGORY="multimedia" SHORT_DESC="The Oil Runtime Compiler." MAINTAINER="domcox@slitaz.org" @@ -11,6 +11,8 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="https://gstreamer.freedesktop.org/src/$PACKAGE/$TARBALL" +BUILD_DEPENDS="meson" + HOST_ARCH="i486 arm" current_version() @@ -22,19 +24,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --libexecdir=/usr/lib \ - --disable-static \ - $CONFIGURE_ARGS && - make $MAKEFLAGS && - make install + meson _build \ + --prefix=/usr && + ninja -C _build && + ninja -C _build install + } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }