diff options
author | Tim Biermann <tbier@posteo.de> | 2021-05-09 11:40:04 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-05-09 12:09:48 +0000 |
commit | 65b26cbce88e23be652212cb1dac43ca6bc9699c (patch) | |
tree | e73bd2bb8b0d41ea0989d53342c66a2985fe0a2f /rnnoise | |
parent | e0501628157008a93c38b80a95b1d0051e3fa0d3 (diff) | |
download | contrib-65b26cbce88e23be652212cb1dac43ca6bc9699c.tar.gz contrib-65b26cbce88e23be652212cb1dac43ca6bc9699c.tar.xz |
rnnoise: initial commit, version 0.4.1
Diffstat (limited to 'rnnoise')
-rw-r--r-- | rnnoise/.footprint | 12 | ||||
-rw-r--r-- | rnnoise/.signature | 5 | ||||
-rw-r--r-- | rnnoise/Pkgfile | 20 |
3 files changed, 37 insertions, 0 deletions
diff --git a/rnnoise/.footprint b/rnnoise/.footprint new file mode 100644 index 000000000..eef4160f7 --- /dev/null +++ b/rnnoise/.footprint @@ -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/ diff --git a/rnnoise/.signature b/rnnoise/.signature new file mode 100644 index 000000000..6741f135e --- /dev/null +++ b/rnnoise/.signature @@ -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 diff --git a/rnnoise/Pkgfile b/rnnoise/Pkgfile new file mode 100644 index 000000000..c5c77d163 --- /dev/null +++ b/rnnoise/Pkgfile @@ -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 +} |