Skip to content
Snippets Groups Projects
Commit 39638035 authored by Romain Roffé's avatar Romain Roffé Committed by Jean-Baptiste Kempf
Browse files

package/macosx: Fix plugin installation

Backported from VLC 4 (RTP plugin weren't included).

(cherry picked from commit b4d191dd)
parent 095bfffb
No related branches found
No related tags found
Loading
Pipeline #230759 passed with stages
in 19 minutes and 57 seconds
......@@ -52,7 +52,7 @@ endif
find $(prefix)/lib -name 'libvlc*.dylib' -maxdepth 1 -exec cp -a {} $@/Contents/MacOS/lib \;
## Copy plugins
mkdir -p $@/Contents/MacOS/plugins
find $(prefix)/lib/vlc/plugins -name 'lib*_plugin.dylib' -maxdepth 2 -exec cp -a {} $@/Contents/MacOS/plugins \;
find $(prefix)/lib/vlc/plugins -name 'lib*_plugin.dylib' -maxdepth 3 -exec cp -a {} $@/Contents/MacOS/plugins \;
## Copy libbluray jar
find "$(CONTRIB_DIR)/share/java/" -name 'libbluray*.jar' -maxdepth 1 -exec cp -a {} $@/Contents/MacOS/plugins \; || true
## 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