diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2019-07-16 23:47:06 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2019-07-16 23:47:06 +0000 |
commit | 7c71c427de6bf69b6313f744fa53d1443ed10bda (patch) | |
tree | 45a7e866362cc7608673afe8ca78492850851e5f /audio/string-machine-lv2/Makefile | |
parent | 48de8a4b8cf61275802d0cec2c036503c6010dc6 (diff) | |
download | ports-7c71c427de6bf69b6313f744fa53d1443ed10bda.tar.gz ports-7c71c427de6bf69b6313f744fa53d1443ed10bda.zip |
Notes
Diffstat (limited to 'audio/string-machine-lv2/Makefile')
-rw-r--r-- | audio/string-machine-lv2/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/audio/string-machine-lv2/Makefile b/audio/string-machine-lv2/Makefile new file mode 100644 index 000000000000..53d52f8c11c3 --- /dev/null +++ b/audio/string-machine-lv2/Makefile @@ -0,0 +1,42 @@ +# $FreeBSD$ + +PORTNAME= string-machine +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.0 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Digital model of electronic string ensemble instrument + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= lv2>0:audio/lv2 \ + ${LOCALBASE}/include/boost/intrusive/list.hpp:devel/boost-libs + +USES= gmake gnome localbase pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= jpcima +GH_TUPLE= DISTRHO:DPF:7a056bb:d/dpf +USE_GNOME= cairo +USE_XORG= x11 + +CFLAGS+= -I${FILESDIR} -pthread + +PLIST_FILES= lib/lv2/string-machine.lv2/manifest.ttl \ + lib/lv2/string-machine.lv2/presets.ttl \ + lib/lv2/string-machine.lv2/string-machine.so \ + lib/lv2/string-machine.lv2/string-machine.ttl \ + lib/vst/string-machine-vst.so + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/lv2/${PORTNAME}.lv2 + ${INSTALL_LIB} ${WRKSRC}/bin/${PORTNAME}.lv2/string-machine.so ${STAGEDIR}${PREFIX}/lib/lv2/${PORTNAME}.lv2 +.for f in manifest.ttl presets.ttl string-machine.ttl + ${INSTALL_DATA} ${WRKSRC}/bin/${PORTNAME}.lv2/${f} ${STAGEDIR}${PREFIX}/lib/lv2/${PORTNAME}.lv2 +.endfor + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/vst + ${INSTALL_LIB} ${WRKSRC}/bin/string-machine-vst.so ${STAGEDIR}${PREFIX}/lib/vst + +.include <bsd.port.mk> |