diff options
author | Danny Rawlins <contact@romster.me> | 2021-01-19 20:29:40 +1100 |
---|---|---|
committer | Danny Rawlins <contact@romster.me> | 2021-01-19 20:29:40 +1100 |
commit | cc09da5d62a64a888e40a1b41bfa5127af904414 (patch) | |
tree | ec2cf536b68a4bc74e4a7811ebaf7ca118095c98 /openal-32 | |
parent | 6107589261fc19edff5861900b124344f214e1e7 (diff) | |
download | compat-32-cc09da5d62a64a888e40a1b41bfa5127af904414.tar.gz compat-32-cc09da5d62a64a888e40a1b41bfa5127af904414.tar.xz |
openal-32: 1.20.1 -> 1.21.0
Diffstat (limited to 'openal-32')
-rw-r--r-- | openal-32/.footprint | 4 | ||||
-rw-r--r-- | openal-32/.signature | 8 | ||||
-rw-r--r-- | openal-32/Pkgfile | 24 |
3 files changed, 18 insertions, 18 deletions
diff --git a/openal-32/.footprint b/openal-32/.footprint index 66586ef4..1e9cc731 100644 --- a/openal-32/.footprint +++ b/openal-32/.footprint @@ -5,7 +5,7 @@ drwxr-xr-x root/root usr/lib32/cmake/OpenAL/ -rw-r--r-- root/root usr/lib32/cmake/OpenAL/OpenALConfig-release.cmake -rw-r--r-- root/root usr/lib32/cmake/OpenAL/OpenALConfig.cmake lrwxrwxrwx root/root usr/lib32/libopenal.so -> libopenal.so.1 -lrwxrwxrwx root/root usr/lib32/libopenal.so.1 -> libopenal.so.1.20.1 --rwxr-xr-x root/root usr/lib32/libopenal.so.1.20.1 +lrwxrwxrwx root/root usr/lib32/libopenal.so.1 -> libopenal.so.1.21.0 +-rwxr-xr-x root/root usr/lib32/libopenal.so.1.21.0 drwxr-xr-x root/root usr/lib32/pkgconfig/ -rw-r--r-- root/root usr/lib32/pkgconfig/openal.pc diff --git a/openal-32/.signature b/openal-32/.signature index 07a9b33e..31b4feaf 100644 --- a/openal-32/.signature +++ b/openal-32/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/compat-32.pub -RWSwxGo/zH7eXVC8QrThlUe33rq2aMktZ3qzxReZJ6bF8Pahe5tkj8SJGKdx/sE3X7NbWo8bn2Fs8QhLW04Tq9NHeeoUEdobmgo= -SHA256 (Pkgfile) = dc45c81b0254d10b4113ce3ce13a49c10afd602bf56fbce3182d508cff3708a4 -SHA256 (.footprint) = 3aee71690afa1e62fad071035cbe516c2d99339b3592fc59671dd89e8de5676b -SHA256 (openal-soft-1.20.1.tar.gz) = c32d10473457a8b545aab50070fe84be2b5b041e1f2099012777ee6be0057c13 +RWSwxGo/zH7eXdyZhJ/xmLX80Gmv6+QneQF3hcOSYgccIhZQXC+G18luldBsFQa7ocygG1V4M23KE5lfVYCcitTRW+N3ydlm0AU= +SHA256 (Pkgfile) = ce1ebfffadc240eb4b2e8c7d45bd17bb7f534e804ee8732d0dd5c754c83d8474 +SHA256 (.footprint) = 7be53cfddb062ea402e30971ff584f60ef172dd8e6e17fe937e65faa3f878f9f +SHA256 (openal-soft-1.21.0.tar.gz) = cd3650530866f3906058225f4bfbe0052be19e0a29dcc6df185a460f9948feec diff --git a/openal-32/Pkgfile b/openal-32/Pkgfile index b05ed237..9ca756ef 100644 --- a/openal-32/Pkgfile +++ b/openal-32/Pkgfile @@ -4,23 +4,23 @@ # Depends on: alsa-lib-32 openal name=openal-32 -version=1.20.1 +version=1.21.0 release=1 source=(https://github.com/kcat/openal-soft/archive/openal-soft-$version.tar.gz) build() { - cd openal-soft-openal-soft-$version/build + [ -e '/usr/bin/ninja' ] && PKGMK_OPENAL+=' -G Ninja' - cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib32 \ - -DALSOFT_UTILS=OFF \ - -DALSOFT_EXAMPLES=OFF \ - -DQT_QMAKE_EXECUTABLE=qmake-disabled \ - -DCMAKE_BUILD_TYPE=Release #-DCMAKE_VERBOSE_MAKEFILE:BOOL="on" + cmake -S openal-soft-openal-soft-$version -B build ${PKGMK_OPENAL_32} \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_INSTALL_LIBDIR=lib32 \ + -D ALSOFT_UTILS=OFF \ + -D ALSOFT_EXAMPLES=OFF \ + -D QT_QMAKE_EXECUTABLE=qmake-disabled \ + -D CMAKE_BUILD_TYPE=Release - make - make DESTDIR=$PKG install + cmake --build build + DESTDIR=$PKG cmake --install build - rm -r $PKG/usr/{bin,include,share} + rm -r $PKG/usr/{include,share} } |