diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2025-01-16 15:31:15 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2025-01-16 22:34:24 +0000 |
commit | c8c94c8722b8eb2c42c5e1981071bdd1ed9d8849 (patch) | |
tree | e6642f90b4adbdcac15fa95326eff4f29498dfdf | |
parent | d9b18781603ab873e3bedea5c1008547ba644c14 (diff) |
devel/juce: Fix cmake problem with included missing VST3-related cmake file
Reported by: fallout
-rw-r--r-- | devel/juce/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devel/juce/Makefile b/devel/juce/Makefile index bcbc5cfc37a9..f35d5cd13f2e 100644 --- a/devel/juce/Makefile +++ b/devel/juce/Makefile @@ -1,5 +1,6 @@ PORTNAME= juce DISTVERSION= 8.0.6 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org @@ -89,6 +90,8 @@ post-install: .endfor # strip juceaide ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/JUCE-${PORTVERSION}/juceaide + # workaround for https://github.com/juce-framework/JUCE/issues/1502 + @${REINPLACE_CMD} -e 's|.*VST3_HELPER\.cmake.*||' ${STAGEDIR}${PREFIX}/lib/cmake/JUCE-8.0.6/JUCEConfig.cmake do-install-DEMOS-on: .for e in ${DEMO_FILES} |