contrib/rnnoise/Pkgfile

22 lines
493 B
Plaintext
Raw Normal View History

2021-05-09 13:40:04 +02:00
# Description: Recurrent neural network for audio noise reduction
2023-06-10 08:42:00 +02:00
# URL: https://github.com/xiph/rnnoise
2021-05-09 13:40:04 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
name=rnnoise
version=0.4.1
_commit=1cbdbcf1283499bbb2230a6b0f126eb9b236defd
release=1
2023-06-18 18:10:16 +02:00
source=(https://gitlab.xiph.org/xiph/rnnoise/-/archive/$_commit/rnnoise-$_commit.tar.gz)
2021-05-09 13:40:04 +02:00
build() {
cd $name-$_commit
2023-06-10 08:42:00 +02:00
2021-05-09 13:40:04 +02:00
./autogen.sh
./configure --prefix=/usr \
--disable-doc
make
make DESTDIR=$PKG install
2023-06-10 08:42:00 +02:00
2021-05-09 13:40:04 +02:00
rm -rf $PKG/usr/share/doc
}