wok rev 25013
updated openal and openal-dev (1.20.1 -> 1.22.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue May 17 07:38:28 2022 +0100 (2022-05-17) |
parents | affc6fdda56c |
children | 6b47ab094b52 |
files | openal-dev/receipt openal/description.txt openal/receipt |
line diff
1.1 --- a/openal-dev/receipt Mon May 16 19:42:25 2022 +0000 1.2 +++ b/openal-dev/receipt Tue May 17 07:38:28 2022 +0100 1.3 @@ -2,7 +2,7 @@ 1.4 1.5 PACKAGE="openal-dev" 1.6 SOURCE="openal-soft" 1.7 -VERSION="1.20.1" 1.8 +VERSION="1.22.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Cross-platform 3D audio API, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -15,8 +15,6 @@ 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 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 + cook_copy_folders include 1.21 + cook_copy_folders pkgconfig 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/openal/description.txt Tue May 17 07:38:28 2022 +0100 2.3 @@ -0,0 +1,11 @@ 2.4 +OpenAL Soft is an LGPL-licensed, cross-platform, software 2.5 +implementation of the OpenAL 3D audio API. 2.6 +OpenAL provides capabilities for playing audio in a virtual 2.7 +3D environment. 2.8 +Distance attenuation, doppler shift, and directional sound 2.9 +emitters are among the features handled by the API. 2.10 +More advanced effects, including air absorption, occlusion, 2.11 +and environmental reverb, are available through the EFX 2.12 +extension. 2.13 +It also facilitates streaming audio, multi-channel buffers, 2.14 +and audio capture.
3.1 --- a/openal/receipt Mon May 16 19:42:25 2022 +0000 3.2 +++ b/openal/receipt Tue May 17 07:38:28 2022 +0100 3.3 @@ -1,13 +1,14 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="openal" 3.7 -VERSION="1.20.1" 3.8 +VERSION="1.22.0" 3.9 CATEGORY="multimedia" 3.10 TAGS="multimedia audio sound 3D" 3.11 -SHORT_DESC="cross-platform 3D audio API." 3.12 +SHORT_DESC="Cross-platform 3D audio API." 3.13 MAINTAINER="pascal.bellard@slitaz.org" 3.14 LICENSE="LGPL2" 3.15 WEB_SITE="https://www.openal-soft.org/" 3.16 +REPOLOGY="openal-soft" 3.17 3.18 SOURCE="openal-soft" 3.19 TARBALL="$SOURCE-$VERSION.tar.bz2" 3.20 @@ -30,7 +31,10 @@ 3.21 export CXX=g++-83 3.22 export LDFLAGS="$LDFLAGS -latomic" 3.23 3.24 - cmake -DCMAKE_INSTALL_PREFIX=/usr && 3.25 + mkdir _build && 3.26 + cd _build && 3.27 + cmake .. \ 3.28 + -D CMAKE_INSTALL_PREFIX=/usr && 3.29 make && 3.30 make install 3.31 } 3.32 @@ -38,13 +42,14 @@ 3.33 # Rules to gen a SliTaz package suitable for Tazpkg. 3.34 genpkg_rules() 3.35 { 3.36 - mkdir -p $fs/usr/lib 3.37 + mkdir -p $fs/etc/xdg 3.38 3.39 - cp -a $install/usr/bin $fs/usr 3.40 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.41 + cook_copy_folders bin 3.42 + cook_copy_files *.so* 3.43 + cp -a $src/alsoftrc.sample $fs/etc/xdg/alsoft.conf 3.44 } 3.45 3.46 -# Pre and post install commands for Tazpkg. 3.47 +# Post install commands for Tazpkg. 3.48 post_install() 3.49 { 3.50 [ -s $1/etc/rcS.conf ] &&