From dcd27ff250fea6655bd3bf319c2270fa6955594c Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Thu, 7 Dec 2017 18:20:46 +0000 Subject: [PATCH] New port: audio/screcord-lv2: LV2 capture plugin Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13396 --- audio/Makefile | 1 + audio/screcord-lv2/Makefile | 30 ++++++++++++++++++++++++++++++ audio/screcord-lv2/distinfo | 3 +++ audio/screcord-lv2/pkg-descr | 4 ++++ 4 files changed, 38 insertions(+) create mode 100644 audio/screcord-lv2/Makefile create mode 100644 audio/screcord-lv2/distinfo create mode 100644 audio/screcord-lv2/pkg-descr diff --git a/audio/Makefile b/audio/Makefile index cc4fe6fb42fb..f9471ba111dd 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -725,6 +725,7 @@ SUBDIR += sbagen SUBDIR += sc3-plugins SUBDIR += schismtracker + SUBDIR += screcord-lv2 SUBDIR += scrobbler SUBDIR += sdl2_mixer SUBDIR += sdl_mixer diff --git a/audio/screcord-lv2/Makefile b/audio/screcord-lv2/Makefile new file mode 100644 index 000000000000..1382e42e5e20 --- /dev/null +++ b/audio/screcord-lv2/Makefile @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= screcord +DISTVERSION= g20171206 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= LV2 capture plugin + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= lv2>0:audio/lv2 +LIB_DEPENDS= libsndfile.so:audio/libsndfile + +USES= gmake pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= brummer10 +GH_PROJECT= ${PORTNAME}.lv2 +GH_TAGNAME= 36fbff9 + +PLIST_FILES= lib/lv2/sc_record.lv2/manifest.ttl \ + lib/lv2/sc_record.lv2/sc_record.so \ + lib/lv2/sc_record.lv2/sc_record.ttl + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/sc_record.lv2/sc_record.so + +.include diff --git a/audio/screcord-lv2/distinfo b/audio/screcord-lv2/distinfo new file mode 100644 index 000000000000..9bf07399f706 --- /dev/null +++ b/audio/screcord-lv2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1512578049 +SHA256 (brummer10-screcord.lv2-g20171206-36fbff9_GH0.tar.gz) = 8eaec5934bcf43b4557d9260c7b0c2c6d625a877185497493b87850c000d0379 +SIZE (brummer10-screcord.lv2-g20171206-36fbff9_GH0.tar.gz) = 12991 diff --git a/audio/screcord-lv2/pkg-descr b/audio/screcord-lv2/pkg-descr new file mode 100644 index 000000000000..0e6f784ee188 --- /dev/null +++ b/audio/screcord-lv2/pkg-descr @@ -0,0 +1,4 @@ +A simple LV2 capture plugin that is able to capture mono and a stereo streams, +saving them to files of any audio format supported by libsndfile. + +WWW: https://github.com/brummer10/screcord.lv2