Date: Sun, 7 Feb 2021 06:32:07 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r564605 - in head/audio: . rnnoise Message-ID: <202102070632.1176W790009051@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102070632.1176W790009051>