diff options
author | Dekedro <dekedro@tankers.xyz> | 2022-08-07 12:00:03 +0000 |
---|---|---|
committer | alice <alice@ayaya.dev> | 2022-08-07 14:56:47 +0000 |
commit | 9b9bafc9d5f6050b6e7206915c9e07fb7bb2ee1e (patch) | |
tree | 980c8d0a128bd88e151eb995c5471c151de1a774 | |
parent | 1c25db03e341923dcc37100da1351749f54d8078 (diff) |
community/noise-suppression-for-voice: upgrade to 1.03
Disables LV2 plugin.
Additional work around JUCE needs to be done to reenable it.
-rw-r--r-- | community/noise-suppression-for-voice/APKBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/community/noise-suppression-for-voice/APKBUILD b/community/noise-suppression-for-voice/APKBUILD index 76752cecc6b..64d3196baa1 100644 --- a/community/noise-suppression-for-voice/APKBUILD +++ b/community/noise-suppression-for-voice/APKBUILD @@ -1,15 +1,14 @@ # Maintainer: Dekedro <dekedro@tankers.xyz> pkgname=noise-suppression-for-voice -pkgver=0.91 -pkgrel=1 +pkgver=1.03 +pkgrel=0 pkgdesc="Real-time noise suppression plugin for voice" url="https://github.com/werman/noise-suppression-for-voice" arch="all" license="GPL-3.0-or-later" makedepends="cmake" -options="!check" # No tests -source="$pkgname-$pkgver.tar.gz::https://github.com/werman/noise-suppression-for-voice/archive/refs/tags/v$pkgver.tar.gz - fix-lv2-dirs.patch::https://github.com/werman/noise-suppression-for-voice/commit/e391a9b7e04505a628b455c9d194a3c7006e4ae9.patch" +options="!check" # Tests don't build +source="$pkgname-$pkgver.tar.gz::https://github.com/werman/noise-suppression-for-voice/archive/refs/tags/v$pkgver.tar.gz" build() { if [ "$CBUILD" != "$CHOST" ]; then @@ -20,7 +19,12 @@ build() { -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_SHARED_LIBS=True \ -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DBUILD_TESTS=OFF \ -DBUILD_VST_PLUGIN=OFF \ + -DBUILD_VST3_PLUGIN=OFF \ + -DBUILD_LV2_PLUGIN=OFF \ + -DBUILD_AU_PLUGIN=OFF \ + -DBUILD_AUV3_PLUGIN=OFF \ $CMAKE_CROSSOPTS . cmake --build build } @@ -30,6 +34,5 @@ package() { } sha512sums=" -e117fd54e6cf01c4721b79fddca2f2898331e46764c7a05077ed3034c50e2cbc0c1d6fa3084f7c6f56a629bf20127a7d1bccd57d30b0693cc3eb30edaae6cd28 noise-suppression-for-voice-0.91.tar.gz -8eb7a69e3069b9060d0e60e751463292c92bd943f687c0e326689d0bc36d2817bcb8733e84adb00661a962a337aeb99a4c709753f112f03b69a84b1a416faa26 fix-lv2-dirs.patch +1cf08c947a1f5415e35d11007acb3bf1cbb6929c81c3d877d2a1714ec30061285077f9850eb08da7784bf2188d849bd630ad605b1b6e03ea75a1afb16076a512 noise-suppression-for-voice-1.03.tar.gz " |