svn commit: r564605 - in head/audio: . rnnoise
Yuri Victorovich
yuri at FreeBSD.org
Sun Feb 7 06:32:08 UTC 2021
Author: yuri
Date: Sun Feb 7 06:32:07 2021
New Revision: 564605
URL: https://svnweb.freebsd.org/changeset/ports/564605
Log:
New port: audio/rnnoise: Recurrent neural network for audio noise reduction
Added:
head/audio/rnnoise/
head/audio/rnnoise/Makefile (contents, props changed)
head/audio/rnnoise/distinfo (contents, props changed)
head/audio/rnnoise/pkg-descr (contents, props changed)
Modified:
head/audio/Makefile
Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile Sun Feb 7 05:42:13 2021 (r564604)
+++ head/audio/Makefile Sun Feb 7 06:32:07 2021 (r564605)
@@ -676,6 +676,7 @@
SUBDIR += ripit
SUBDIR += ripperx
SUBDIR += rkr-lv2
+ SUBDIR += rnnoise
SUBDIR += rnnoise-nu
SUBDIR += rosegarden
SUBDIR += rplay
Added: head/audio/rnnoise/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/rnnoise/Makefile Sun Feb 7 06:32:07 2021 (r564605)
@@ -0,0 +1,39 @@
+# $FreeBSD$
+
+PORTNAME= rnnoise
+DISTVERSION= g20210122
+CATEGORIES= audio
+
+MAINTAINER= yuri at FreeBSD.org
+COMMENT= Recurrent neural network for audio noise reduction
+
+LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= autoreconf gmake libtool
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --disable-static --disable-examples
+USE_LDCONFIG= yes
+
+USE_GITHUB= yes
+GH_ACCOUNT= xiph
+GH_TAGNAME= 1cbdbcf
+
+INSTALL_TARGET= install-strip
+
+OPTIONS_DEFINE= DOCS
+
+DOCS_CONFIGURE_ENABLE= doc
+
+PORTDOCS= * # API documentation feature is broken: https://github.com/xiph/rnnoise/issues/44
+
+PLIST_FILES= include/rnnoise.h \
+ lib/librnnoise.so \
+ lib/librnnoise.so.0 \
+ lib/librnnoise.so.0.4.1 \
+ libdata/pkgconfig/rnnoise.pc
+
+post-install-DOCS-on:
+ @${RM} ${STAGEDIR}${DOCSDIR}/COPYING
+
+.include <bsd.port.mk>
Added: head/audio/rnnoise/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/rnnoise/distinfo Sun Feb 7 06:32:07 2021 (r564605)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1612679142
+SHA256 (xiph-rnnoise-g20210122-1cbdbcf_GH0.tar.gz) = e2aedecd6ee74c2c04caa90c4f02c4f1ceca6303d4a24bb59f0c00895b4fdcf0
+SIZE (xiph-rnnoise-g20210122-1cbdbcf_GH0.tar.gz) = 173753
Added: head/audio/rnnoise/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/audio/rnnoise/pkg-descr Sun Feb 7 06:32:07 2021 (r564605)
@@ -0,0 +1,3 @@
+RNNoise is a noise suppression library based on a recurrent neural network.
+
+WWW: https://github.com/xiph/rnnoise
More information about the svn-ports-head
mailing list