diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2022-01-12 20:07:32 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2022-01-12 20:07:32 +0000 |
commit | b63918758d4547ce590e37677c3df7bdab9ff36e (patch) | |
tree | 632a80046782e6814ffd0e0bb8f147ebeaed3f1b | |
parent | d178a8a6d195597926f9e6cdc84eddb451992586 (diff) | |
download | ports-b63918758d4547ce590e37677c3df7bdab9ff36e.tar.gz ports-b63918758d4547ce590e37677c3df7bdab9ff36e.zip |
audio/fluidplug-lv2: switch from p7zip to 7-zip
PR: 260866
-rw-r--r-- | audio/fluidplug-lv2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/fluidplug-lv2/Makefile b/audio/fluidplug-lv2/Makefile index 056ae7414d5a..2d295d6233d6 100644 --- a/audio/fluidplug-lv2/Makefile +++ b/audio/fluidplug-lv2/Makefile @@ -10,7 +10,7 @@ COMMENT= SoundFonts as LV2 plugins via FluidSynth LICENSE= LGPL20 -BUILD_DEPENDS= 7z:archivers/p7zip \ +BUILD_DEPENDS= 7zz:archivers/7-zip \ lv2>0:audio/lv2 LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth @@ -31,7 +31,8 @@ SSE_MAKE_ARGS= PORT_SIMD_FLAGS="-mtune=generic -msse -msse2 -mfpmath=sse" post-patch: @${REINPLACE_CMD} -e ' \ s|PREFIX = /usr|PREFIX ?= /usr| ; \ - s|wget .*\/\(.*\) \&\& \\|${LN} -s ${DISTDIR}/\1 . \&\& \\|' \ + s|wget .*\/\(.*\) \&\& \\|${LN} -s ${DISTDIR}/\1 . \&\& \\| ; \ + s|7z x |7zz x -bd |' \ ${WRKSRC}/Makefile post-install: |