Date: Mon, 20 Apr 2020 00:34:29 +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: r532167 - in head/audio: . intersect-lv2 Message-ID: <202004200034.03K0YTKD090271@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Apr 20 00:34:28 2020 New Revision: 532167 URL: https://svnweb.freebsd.org/changeset/ports/532167 Log: New port: audio/intersect-lv2: LV2 plugin expands a stereo input to three channels Added: head/audio/intersect-lv2/ head/audio/intersect-lv2/Makefile (contents, props changed) head/audio/intersect-lv2/distinfo (contents, props changed) head/audio/intersect-lv2/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Apr 19 23:32:12 2020 (r532166) +++ head/audio/Makefile Mon Apr 20 00:34:28 2020 (r532167) @@ -343,6 +343,7 @@ SUBDIR += id3v2 SUBDIR += ifp-line SUBDIR += infamous-plugins-lv2 + SUBDIR += intersect-lv2 SUBDIR += invada-studio-plugins-lv2 SUBDIR += ir-lv2 SUBDIR += jack Added: head/audio/intersect-lv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/intersect-lv2/Makefile Mon Apr 20 00:34:28 2020 (r532167) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= intersect +PORTVERSION= g20200126 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= LV2 plugin expands a stereo input to three channels + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/GPLv3.txt + +BUILD_DEPENDS= lv2>0:audio/lv2 \ + ${LOCALBASE}/include/fftw3.h:math/fftw3 +LIB_DEPENDS= libfftw3f.so:math/fftw3-float + +USES= meson pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= sboukortt +GH_PROJECT= intersect-lv2 +GH_TAGNAME= 18a45e46028a9092fcd5f5ae268405e2782ad277 + +PLIST_FILES= lib/lv2/intersect.lv2/intersect.so \ + lib/lv2/intersect.lv2/intersect.ttl \ + lib/lv2/intersect.lv2/manifest.ttl + +post-install: # no need to install an lv2proc-based script + @${RM} ${STAGEDIR}${PREFIX}/bin/intersect + +.include <bsd.port.mk> Added: head/audio/intersect-lv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/intersect-lv2/distinfo Mon Apr 20 00:34:28 2020 (r532167) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587340678 +SHA256 (sboukortt-intersect-lv2-g20200126-18a45e46028a9092fcd5f5ae268405e2782ad277_GH0.tar.gz) = 7443e69587181a00b14cdddd2b042613b6d1f54d442856b01a052e1fafa488a7 +SIZE (sboukortt-intersect-lv2-g20200126-18a45e46028a9092fcd5f5ae268405e2782ad277_GH0.tar.gz) = 20363 Added: head/audio/intersect-lv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/intersect-lv2/pkg-descr Mon Apr 20 00:34:28 2020 (r532167) @@ -0,0 +1,6 @@ +Intersect is an LV2 plugin which, given a stereo audio stream, "expands" it to +three channels. Everything that is present in both input channels will be in the +center channel of the output, and what is specific to each channel will be in +the corresponding output channel. + +WWW: https://github.com/sboukortt/intersect-lv2
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004200034.03K0YTKD090271>