Skip to content
Snippets Groups Projects
Commit b4d191dd authored by Romain Roffé's avatar Romain Roffé Committed by Rémi Denis-Courmont
Browse files

package/macosx: Fix plugin installation

RTP plugin weren't included
parent 8f0728c8
No related branches found
No related tags found
1 merge request!2029package/macosx: Fix plugins installation
Pipeline #228500 passed with stage
in 14 minutes and 29 seconds
......@@ -55,7 +55,7 @@ endif
cp -a "$(macos_destdir)$(libdir)"/libvlc*.dylib $@/Contents/Frameworks/
## Copy plugins
mkdir -p $@/Contents/Frameworks/plugins
find "$(macos_destdir)$(pkglibdir)/plugins" -name 'lib*_plugin.dylib' -maxdepth 2 -exec cp -a {} $@/Contents/Frameworks/plugins \;
find "$(macos_destdir)$(pkglibdir)/plugins" -name 'lib*_plugin.dylib' -maxdepth 3 -exec cp -a {} $@/Contents/Frameworks/plugins \;
## Copy libbluray jar
-cp -a "$(CONTRIB_DIR)"/share/java/libbluray*.jar $@/Contents/Frameworks/plugins/
## Install binary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment