Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
eba61d4f
Commit
eba61d4f
authored
Jun 18, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: added a basic script and some entitlements to enable Sandboxing on OS X Lion (refs #5149)
parent
6fbfa484
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
125 additions
and
0 deletions
+125
-0
Makefile.am
Makefile.am
+2
-0
extras/package/macosx/VLC.entitlements
extras/package/macosx/VLC.entitlements
+34
-0
extras/package/macosx/codesign.sh
extras/package/macosx/codesign.sh
+89
-0
No files found.
Makefile.am
View file @
eba61d4f
...
...
@@ -97,7 +97,9 @@ ChangeLog: Makefile.am
###############################################################################
EXTRA_DIST
+=
\
extras/package/macosx/codesign.sh
\
extras/package/macosx/README.MacOSX.rtf
\
extras/package/macosx/VLC.entitlements
\
extras/package/macosx/Resources/dsa_pub.pem
\
extras/package/macosx/Resources/English.lproj/About.xib
\
extras/package/macosx/Resources/English.lproj/AudioEffects.xib
\
...
...
extras/package/macosx/VLC.entitlements
0 → 100644
View file @
eba61d4f
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<key>
com.apple.security.app-sandbox
</key>
<true/>
<key>
com.apple.security.assets.movies.read-write
</key>
<true/>
<key>
com.apple.security.assets.music.read-write
</key>
<true/>
<key>
com.apple.security.assets.pictures.read-write
</key>
<true/>
<key>
com.apple.security.device.camera
</key>
<true/>
<key>
com.apple.security.device.microphone
</key>
<true/>
<key>
com.apple.security.device.usb
</key>
<true/>
<key>
com.apple.security.device.serial
</key>
<true/>
<key>
com.apple.security.files.downloads.read-write
</key>
<true/>
<key>
com.apple.security.files.user-selected.read-write
</key>
<true/>
<key>
com.apple.security.network.client
</key>
<true/>
<key>
com.apple.security.network.server
</key>
<true/>
<key>
com.apple.security.temporary-exception.files.home-relative-path.read-only
</key>
<string>
/
</string>
<key>
com.apple.security.temporary-exception.files.absolute-path.read-only
</key>
<string>
/dev/
</string>
</dict>
</plist>
extras/package/macosx/codesign.sh
0 → 100755
View file @
eba61d4f
#!/bin/sh
# Copyright @ 2012 Felix Paul Kühne <fkuehne at videolan dot org>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
info
()
{
local
green
=
"
\0
33[1;32m"
local
normal
=
"
\0
33[0m"
echo
"[
${
green
}
codesign
${
normal
}
]
$1
"
}
usage
()
{
cat
<<
EOF
usage:
$0
[options]
Sign VLC.app in the current directory
OPTIONS:
-h Show this help
-i Identity to use
-t Entitlements file to use
EOF
}
while
getopts
"hi:t:"
OPTION
do
case
$OPTION
in
h
)
usage
exit
1
;;
i
)
IDENTITY
=
$OPTARG
;;
t
)
OPTIONS
=
"--entitlements
$OPTARG
"
;;
esac
done
shift
$((
$OPTIND
-
1
))
if
[
"x
$1
"
!=
"x"
]
;
then
usage
exit
1
fi
info
"Signing the executable"
codesign
-s
"
$IDENTITY
"
$OPTIONS
VLC.app/Contents/MacOS/VLC
info
"Signing the modules"
find VLC.app/Contents/MacOS/plugins/
*
-type
f
-exec
codesign
-s
"
$IDENTITY
"
$OPTIONS
'{}'
\;
info
"Signing the libraries"
find VLC.app/Contents/MacOS/lib/
*
-type
f
-exec
codesign
-s
"
$IDENTITY
"
$OPTIONS
'{}'
\;
info
"Signing the lua stuff"
find VLC.app/Contents/MacOS/share/lua/
*
-type
f
-exec
codesign
-s
"
$IDENTITY
"
$OPTIONS
'{}'
\;
info
"all items signed, validating..."
info
"Validating binary"
codesign
--verify
VLC.app/Contents/MacOS/VLC
info
"Validating modules"
find VLC.app/Contents/MacOS/plugins/
*
-type
f
-exec
codesign
--verify
'{}'
\;
info
"Validating libraries"
find VLC.app/Contents/MacOS/lib/
*
-type
f
-exec
codesign
--verify
'{}'
\;
info
"Validating lua stuff"
find VLC.app/Contents/MacOS/share/lua/
*
-type
f
-exec
codesign
--verify
'{}'
\;
info
"Validation complete"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment