mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Add port for libopenal
This commit is contained in:
parent
8603041ed8
commit
2d600a8675
Notes:
sideshowbarker
2024-07-18 18:25:38 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/2d600a86753 Pull-request: https://github.com/SerenityOS/serenity/pull/6963 Reviewed-by: https://github.com/alimpfard
2 changed files with 19 additions and 0 deletions
|
@ -58,6 +58,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
||||||
| [`libksba`](libksba/) | libksba | 1.5.1 | https://gnupg.org/software/libksba/index.html |
|
| [`libksba`](libksba/) | libksba | 1.5.1 | https://gnupg.org/software/libksba/index.html |
|
||||||
| [`libjpeg`](libjpeg/) | libjpeg | 9d | https://ijg.org/ |
|
| [`libjpeg`](libjpeg/) | libjpeg | 9d | https://ijg.org/ |
|
||||||
| [`libogg`](libogg/) | libogg | 1.3.4 | https://github.com/xiph/ogg |
|
| [`libogg`](libogg/) | libogg | 1.3.4 | https://github.com/xiph/ogg |
|
||||||
|
| [`libopenal`](libopenal/) | OpenAL soft | 1.21.1 | https://openal-soft.org/ |
|
||||||
| [`libphysfs`](libphysfs/) | PhysicsFS | 3.0.2 | https://icculus.org/physfs/ |
|
| [`libphysfs`](libphysfs/) | PhysicsFS | 3.0.2 | https://icculus.org/physfs/ |
|
||||||
| [`libpng`](libpng/) | libpng | 1.6.37 | https://libpng.org/ |
|
| [`libpng`](libpng/) | libpng | 1.6.37 | https://libpng.org/ |
|
||||||
| [`libpuffy`](libpuffy/) | libpuffy | 1.0 | https://github.com/ibara/libpuffy |
|
| [`libpuffy`](libpuffy/) | libpuffy | 1.0 | https://github.com/ibara/libpuffy |
|
||||||
|
|
18
Ports/libopenal/package.sh
Executable file
18
Ports/libopenal/package.sh
Executable file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
|
port=libopenal
|
||||||
|
useconfigure=true
|
||||||
|
version=1.21.1
|
||||||
|
workdir="openal-soft-${version}"
|
||||||
|
depends=ffmpeg
|
||||||
|
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_SOURCE_DIR/Toolchain/CMake/CMakeToolchain.txt"
|
||||||
|
files="https://openal-soft.org/openal-releases/openal-soft-${version}.tar.bz2 openal-soft-${version}.tar.bz2 c8ad767e9a3230df66756a21cc8ebf218a9d47288f2514014832204e666af5d8"
|
||||||
|
auth_type=sha256
|
||||||
|
|
||||||
|
configure() {
|
||||||
|
run cmake $configopts
|
||||||
|
}
|
||||||
|
|
||||||
|
install() {
|
||||||
|
# Paths are incorrect when we specify DESTDIR here
|
||||||
|
run make install
|
||||||
|
}
|
Loading…
Reference in a new issue