summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorredtide2023-08-13 15:55:22 +0200
committerredtide2023-08-13 15:55:22 +0200
commitfe8f0eee832a6b461c077cfec61e58f6f6c0d3a3 (patch)
treeee03ba36cebe81b4529bd667940c1dba81b62735
parentfd29fcb0c63a3c3546ae9b23831ea289c07ab42f (diff)
downloadaur-fe8f0eee832a6b461c077cfec61e58f6f6c0d3a3.tar.gz
Added WavPack submodule
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD12
2 files changed, 14 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ae677b9e29b7..c2aa4338de65 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = sfizz-git
pkgdesc = SFZ based sampler (git version)
- pkgver = r24.23212b8
+ pkgver = r43.917d4f5
pkgrel = 1
url = https://sfz.tools/sfizz
arch = x86_64
@@ -31,13 +31,16 @@ pkgbase = sfizz-git
source = sfizz-ui::git+https://github.com/sfztools/sfizz-ui#branch=develop
source = library::git+https://github.com/sfztools/sfizz
source = git+https://github.com/mackron/dr_libs
- source = git+https://github.com/sfztools/stb_vorbis
source = git+https://github.com/sfztools/libaiff
+ source = git+https://github.com/sfztools/stb_vorbis
+ source = git+https://github.com/dbry/WavPack.git
sha512sums = SKIP
sha512sums = SKIP
sha512sums = SKIP
sha512sums = SKIP
sha512sums = SKIP
+ sha512sums = SKIP
+ b2sums = SKIP
b2sums = SKIP
b2sums = SKIP
b2sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 67a25ed9c453..0bc99a17e7ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,7 +13,7 @@ pkgname=(
sfizz-{lib,lv2,standalone,vst3}-git
pd-sfizz-git
)
-pkgver=r24.23212b8
+pkgver=r43.917d4f5
pkgrel=1
pkgdesc="SFZ based sampler (git version)"
url="https://sfz.tools/sfizz"
@@ -50,18 +50,21 @@ source=(
$_gitname::git+https://github.com/sfztools/sfizz-ui#branch=develop
library::git+https://github.com/sfztools/sfizz
git+https://github.com/mackron/dr_libs
- git+https://github.com/sfztools/stb_vorbis
git+https://github.com/sfztools/libaiff
+ git+https://github.com/sfztools/stb_vorbis
+ git+https://github.com/dbry/WavPack.git
)
sha512sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
+ 'SKIP'
'SKIP')
b2sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
+ 'SKIP'
'SKIP')
_pick() {
@@ -88,13 +91,16 @@ prepare() {
git config submodule.external.st_audiofile.thirdparty.dr_libs.url ../dr_libs
git config submodule.external.st_audiofile.thirdparty.libaiff.url ../libaiff
git config submodule.external.st_audiofile.thirdparty.stb_vorbis.url ../stb_vorbis
+ git config submodule.external.st_audiofile.thirdparty.wavpack.url ../wavpack
git submodule update
rm -rf $_gitname/library
ln -svf $(pwd)/library $_gitname/
+ mv ../WavPack ../wavpack
pushd ./library/external/st_audiofile/thirdparty
- for module in dr_libs libaiff stb_vorbis; do
+ mv "$srcdir/WavPack" "$srcdir/wavpack"
+ for module in dr_libs libaiff stb_vorbis wavpack; do
rm -rf $module
ln -svf "$srcdir/$module" $module
done