Date: Sunday, June 5, 2022 @ 08:48:38 Author: arojas Revision: 1222848
Add new kdenlive optdepends Added: noise-suppression-for-voice/ noise-suppression-for-voice/trunk/ noise-suppression-for-voice/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Added: noise-suppression-for-voice/trunk/PKGBUILD =================================================================== --- noise-suppression-for-voice/trunk/PKGBUILD (rev 0) +++ noise-suppression-for-voice/trunk/PKGBUILD 2022-06-05 08:48:38 UTC (rev 1222848) @@ -0,0 +1,25 @@ +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: WorMzy Tykashi <[email protected]> + +pkgname=noise-suppression-for-voice +pkgver=0.91 +pkgrel=2 +pkgdesc='A real-time noise suppression plugin for voice' +arch=(x86_64) +url='https://github.com/werman/noise-suppression-for-voice' +license=(GPL3) +depends=(gcc-libs) +makedepends=(cmake) +source=(https://github.com/werman/noise-suppression-for-voice/archive/v$pkgver/$pkgname-$pkgver.tar.gz) +sha256sums=('4f3a112534d4abb5ee2b6c328cde89193dbdb2146cffc98505972c3b5397a35e') + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=None + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}
