mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
701aa3bcf8
Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sc3-plugins
|
|
DISTVERSIONPREFIX= Version-
|
|
DISTVERSION= 3.9.0
|
|
PORTREVISION= 10
|
|
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>
|