mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
extra/openal to 1.18.0-1
This commit is contained in:
parent
67ff2c3ebc
commit
a0838e43ba
1 changed files with 20 additions and 14 deletions
|
@ -9,26 +9,31 @@
|
||||||
|
|
||||||
pkgbase=openal
|
pkgbase=openal
|
||||||
pkgname=(openal openal-examples)
|
pkgname=(openal openal-examples)
|
||||||
pkgver=1.17.2
|
pkgver=1.18.0
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc="Cross-platform 3D audio library, software implementation"
|
pkgdesc="Cross-platform 3D audio library, software implementation"
|
||||||
arch=(i686 x86_64)
|
arch=(i686 x86_64)
|
||||||
url="https://github.com/kcat/openal-soft"
|
url="https://github.com/kcat/openal-soft"
|
||||||
license=(LGPL)
|
license=(LGPL)
|
||||||
depends=(glibc)
|
depends=(glibc)
|
||||||
makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack sdl2 sdl_sound ffmpeg
|
makedepends=(alsa-lib pkgconfig cmake libpulse qt5-base fluidsynth portaudio jack sdl2 sdl_sound
|
||||||
git)
|
ffmpeg git)
|
||||||
source=("git+$url#tag=openal-soft-$pkgver"
|
_commit=61e43d4039277c538f3f6e0af7c988e7d71d8558 # tags/openal-soft-1.18.0
|
||||||
|
source=("git+https://github.com/kcat/openal-soft#commit=$_commit"
|
||||||
'no-fpuextended.patch'
|
'no-fpuextended.patch'
|
||||||
'openal-soft-arm_neon-only-for-32bit.patch')
|
'openal-soft-arm_neon-only-for-32bit.patch')
|
||||||
sha256sums=('SKIP'
|
sha256sums=('SKIP'
|
||||||
'960e346be09cf2ce658f3e4ac47581609cc7df42b0b0a7a1a41a0f8ac5d17b6f'
|
'960e346be09cf2ce658f3e4ac47581609cc7df42b0b0a7a1a41a0f8ac5d17b6f'
|
||||||
'419ec5b76ab5013bb0004c785497766364ec7ea60b3b6badf11284147dfddb19')
|
'419ec5b76ab5013bb0004c785497766364ec7ea60b3b6badf11284147dfddb19')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd openal-soft
|
||||||
|
git describe --tags | sed 's/^openal-soft-//;s/-/+/g'
|
||||||
|
}
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
mkdir build examples
|
mkdir build examples
|
||||||
cd $pkgbase-soft
|
cd openal-soft
|
||||||
sed -i 's/PIX_FMT_YUV420P/AV_&/g' examples/alffplay.c
|
|
||||||
|
|
||||||
patch -p1 -i "${srcdir}"/no-fpuextended.patch
|
patch -p1 -i "${srcdir}"/no-fpuextended.patch
|
||||||
patch -p1 -i "${srcdir}"/openal-soft-arm_neon-only-for-32bit.patch
|
patch -p1 -i "${srcdir}"/openal-soft-arm_neon-only-for-32bit.patch
|
||||||
|
@ -36,25 +41,26 @@ prepare() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd build
|
cd build
|
||||||
cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release ../$pkgbase-soft
|
cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_LIBDIR=lib ../openal-soft
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package_openal() {
|
package_openal() {
|
||||||
optdepends=('qt4: alsoft-config GUI Configurator'
|
optdepends=('qt5-base: alsoft-config GUI Configurator'
|
||||||
'fluidsynth: MIDI rendering')
|
'fluidsynth: MIDI rendering')
|
||||||
|
|
||||||
make -C build DESTDIR="$pkgdir/" install
|
make -C build DESTDIR="$pkgdir" install
|
||||||
install -m644 $pkgbase-soft/{env-vars,hrtf}.txt "$pkgdir/usr/share/openal/"
|
|
||||||
|
install -Dt "$pkgdir/usr/share/doc/openal" -m644 openal-soft/docs/*
|
||||||
|
|
||||||
### Split openal-examples
|
### Split openal-examples
|
||||||
mv "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
|
mv -v "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
|
||||||
}
|
}
|
||||||
|
|
||||||
package_openal-examples() {
|
package_openal-examples() {
|
||||||
pkgdesc+=" (example programs)"
|
pkgdesc+=" (example programs)"
|
||||||
depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
|
depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
|
||||||
|
|
||||||
mkdir -p "$pkgdir/usr/bin"
|
mkdir "$pkgdir/usr"
|
||||||
mv examples/* "$pkgdir/usr/bin/"
|
mv -v examples "$pkgdir/usr/bin"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue