blob: 4590c85e818ca1368ded3b8552cbde8475845e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $FreeBSD$
PORTNAME= sc3-plugins
DISTVERSIONPREFIX= Version-
DISTVERSION= 3.9.0
PORTREVISION= 6
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org
COMMENT= Extension plugins for the SuperCollider3 audio synthesis server
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/license.txt
BUILD_DEPENDS= ${LOCALBASE}/include/SuperCollider/SCVersion.txt:audio/supercollider \
${LOCALBASE}/include/boost/intrusive/unordered_set.hpp:devel/boost-libs \
${LOCALBASE}/include/fftw3.h:math/fftw3
LIB_DEPENDS= libfftw3f.so:math/fftw3-float \
libstk.so:audio/stk
OPTIONS_DEFINE= SUPERNOVA
OPTIONS_DEFAULT= SUPERNOVA
SUPERNOVA_DESC= Build plugins for supernova
OPTIONS_SUB= yes
USES= compiler:c++11-lang cmake localbase pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= supercollider
GH_TUPLE= timblechmann:nova-simd:3140689:n/external_libraries/nova-simd
CMAKE_ARGS+= -DSYSTEM_STK:BOOL=ON
CMAKE_ARGS+= -DSC_PATH:STRING=${LOCALBASE}/include/SuperCollider/ # see https://github.com/supercollider/sc3-plugins/issues/170
SUPERNOVA_CMAKE_BOOL= SUPERNOVA
post-patch:
@${REINPLACE_CMD} -e ' \
s|/usr/local|${PREFIX}|' \
${WRKSRC}/cmake_modules/*.cmake
.include <bsd.port.mk>
|