rnnoise: initial commit, version 0.4.1

This commit is contained in:
Tim Biermann 2021-05-09 11:40:04 +00:00
parent e050162815
commit 65b26cbce8
3 changed files with 37 additions and 0 deletions

12
rnnoise/.footprint Normal file
View File

@ -0,0 +1,12 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/rnnoise.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/librnnoise.a
-rwxr-xr-x root/root usr/lib/librnnoise.la
lrwxrwxrwx root/root usr/lib/librnnoise.so -> librnnoise.so.0.4.1
lrwxrwxrwx root/root usr/lib/librnnoise.so.0 -> librnnoise.so.0.4.1
-rwxr-xr-x root/root usr/lib/librnnoise.so.0.4.1
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/rnnoise.pc
drwxr-xr-x root/root usr/share/

5
rnnoise/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+qTN814tyrtFrbD0/rKVnLb8zeN25G2sPLXlgsHz3gt5azkWPO3zmQy7rVQiWYrBLaJLtxGGTgNVbzYfbsBKAs=
SHA256 (Pkgfile) = 1a37fd11dce4036684b94d78e129ba0071f6115c9b0d9635eca6c1fb866b65ea
SHA256 (.footprint) = e26cf84d8e9a57ced6ea5b8fdfd8be7e711b6c8572e2790bbb3bc2d85ce320ba
SHA256 (rnnoise-1cbdbcf1283499bbb2230a6b0f126eb9b236defd.tar.gz) = 68c7ab4e408426088603e19955e746bb2a412d84bb121b6f39834c60fc8068b7

20
rnnoise/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: Recurrent neural network for audio noise reduction
# URL: https://gitlab.xiph.org/xiph/rnnoise
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=rnnoise
version=0.4.1
_commit=1cbdbcf1283499bbb2230a6b0f126eb9b236defd
release=1
source=(https://gitlab.xiph.org/xiph/rnnoise/-/archive/$_commit/rnnoise-$_commit.tar.gz)
build() {
cd $name-$_commit
./autogen.sh
./configure --prefix=/usr \
--disable-doc
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}