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 +}