разные обновления

This commit is contained in:
2023-03-11 10:19:26 +03:00
parent bdeae63678
commit 83be601bd5
4 changed files with 5 additions and 5 deletions

31
noisetorch/lure.sh Normal file
View File

@ -0,0 +1,31 @@
name='noisetorch'
version='0.12.2'
release='1'
desc='NoiseTorch-ng is an easy to use open source application for Linux with PulseAudio or PipeWire. It creates a virtual microphone that suppresses noise, in any application.'
homepage='https://github.com/noisetorch/NoiseTorch'
maintainer="Евгений Храмов <xpamych@yandex.ru>"
architectures=('amd64')
license=('GPL-3.0-or-later')
provides=('noisetorch')
conflicts=('noisetorch')
deps=('git' 'go')
build_deps=('git' 'go')
sources=("git+https://github.com/noisetorch/NoiseTorch.git#tag=v${version}")
checksums=('SKIP')
prepare() {
cd "${srcdir}/NoiseTorch"
}
build() {
cd "${srcdir}/NoiseTorch"
make
}
package() {
install -Dm755 "${srcdir}/NoiseTorch/bin/noisetorch" "${pkgdir}/usr/bin/noisetorch"
install -Dm644 "${srcdir}/NoiseTorch/assets/noisetorch.desktop" "${pkgdir}/usr/share/applications/noisetorch.desktop"
install -Dm644 "${srcdir}/NoiseTorch/assets/icon/noisetorch.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/noisetorch.png"
}