git: 40c507f363f6 - main - audio/dexed: Correct VST3 plugin's file path

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Mon, 18 Apr 2022 17:20:05 UTC
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=40c507f363f6f4c86a32f966c59285c4d85528ae

commit 40c507f363f6f4c86a32f966c59285c4d85528ae
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-04-18 16:58:48 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-04-18 17:20:02 +0000

    audio/dexed: Correct VST3 plugin's file path
---
 audio/dexed/Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/audio/dexed/Makefile b/audio/dexed/Makefile
index e0c2a5db7ed7..2b1e22799c71 100644
--- a/audio/dexed/Makefile
+++ b/audio/dexed/Makefile
@@ -2,7 +2,7 @@ PORTNAME=	dexed
 DISTVERSIONPREFIX=	v
 DISTVERSION=	0.9.6-16
 DISTVERSIONSUFFIX=	-g1df9a58
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio
 PKGNAMESUFFIX=	-synth
 
@@ -46,7 +46,7 @@ OPTIONS_DEFAULT=	VST3
 VST3_DESC=		Build the VST3 plugin
 VST3_BUILD_DEPENDS=	vst3sdk>0:audio/vst3sdk
 VST3_CXXFLAGS=		-DJUCE_CUSTOM_VST3_SDK=1 -fPIC
-VST3_PLIST_FILES=	lib/vst/Dexed.so
+VST3_PLIST_FILES=	lib/vst3/Dexed.so
 
 post-patch-VST3-off:
 	@${REINPLACE_CMD} -e 's/FORMATS AU VST3 Standalone/FORMATS AU Standalone/' ${WRKSRC}/Source/CMakeLists.txt
@@ -55,7 +55,7 @@ do-install: # workaround for https://github.com/asb2m10/dexed/issues/342
 	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/Source/Dexed_artefacts/Release/Standalone/Dexed ${STAGEDIR}${PREFIX}/bin
 
 do-install-VST3-on:
-	${MKDIR} ${STAGEDIR}${PREFIX}/lib/vst
-	${INSTALL_LIB} ${BUILD_WRKSRC}/Source/Dexed_artefacts/Release/VST3/Dexed.vst3/Contents/*/Dexed.so ${STAGEDIR}${PREFIX}/lib/vst
+	${MKDIR} ${STAGEDIR}${PREFIX}/lib/vst3
+	${INSTALL_LIB} ${BUILD_WRKSRC}/Source/Dexed_artefacts/Release/VST3/Dexed.vst3/Contents/*/Dexed.so ${STAGEDIR}${PREFIX}/lib/vst3
 
 .include <bsd.port.mk>