2 # Copyright (C) 2012-2014 Felix Paul Kühne <fkuehne at videolan dot org>
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU Lesser General Public License as published by
6 # the Free Software Foundation; either version 2.1 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public License
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24 echo -e "[${green}codesign${normal}] $1"
32 Sign VLC.app in the current directory
37 -t Entitlements file to use
38 -g Enable additional magic
43 while getopts "hi:t:g" OPTION
54 OPTIONS="--entitlements $OPTARG"
61 shift $(($OPTIND - 1))
63 if [ "x$1" != "x" ]; then
71 info "Signing frameworks"
72 find VLC.app/Contents/Frameworks/* -type f -exec codesign --force -s "$IDENTITY" $OPTIONS '{}' \;
74 info "Signing the executable"
75 codesign --force -s "$IDENTITY" $OPTIONS VLC.app/Contents/MacOS/VLC
77 info "Signing the modules"
78 find VLC.app/Contents/MacOS/plugins/* -type f -exec codesign --force -s "$IDENTITY" $OPTIONS '{}' \;
80 info "Signing the libraries"
81 find VLC.app/Contents/MacOS/lib/* -type f -exec codesign --force -s "$IDENTITY" $OPTIONS '{}' \;
83 info "Signing the lua stuff"
84 find VLC.app/Contents/MacOS/share/lua/* -name *luac -type f -exec codesign --force -s "$IDENTITY" $OPTIONS '{}' \;
86 FIRSTPARTOF_REQUIREMENT="=designated => anchor apple generic and identifier \""
87 SECONDPARTOF_REQUIREMENT="\" and ((cert leaf[field.1.2.840.113635.100.6.1.9] exists) or ( certificate 1[field.1.2.840.113635.100.6.2.6] exists and certificate leaf[field.1.2.840.113635.100.6.1.13] exists and certificate leaf[subject.OU] = \"75GAHG3SZQ\" ))"
89 info "Cleaning frameworks"
90 find VLC.app/Contents/Frameworks -type f -name ".DS_Store" -exec rm '{}' \;
91 find VLC.app/Contents/Frameworks -type f -name "*.textile" -exec rm '{}' \;
92 find VLC.app/Contents/Frameworks -type f -name "*.txt" -exec rm '{}' \;
94 info "Signing frameworks"
95 IDENTIFIER="com.growl.growlframework"
96 codesign --force --verbose -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none VLC.app/Contents/Frameworks/Growl.framework/Versions/A
97 IDENTIFIER="org.sparkle-project.Sparkle.Autoupdate"
98 codesign --force --verbose -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none VLC.app/Contents/Frameworks/Sparkle.framework/Resources/Autoupdate.app
99 IDENTIFIER="org.sparkle-project.Sparkle"
100 codesign --force --verbose -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none VLC.app/Contents/Frameworks/Sparkle.framework/Versions/A
102 info "Signing the framework headers"
103 for i in `find VLC.app/Contents/Frameworks/* -type f -name "*.h" -exec echo {} \;`
105 fbname=$(basename "$i")
106 filename="${fbname%.*}"
108 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
111 info "Signing the framework strings"
112 for i in `find VLC.app/Contents/Frameworks/* -type f -name "*.strings" -exec echo {} \;`
114 fbname=$(basename "$i")
115 filename="${fbname%.*}"
117 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
120 info "Signing the framework plist files"
121 for i in `find VLC.app/Contents/Frameworks/* -type f -name "*.plist" -exec echo {} \;`
123 fbname=$(basename "$i")
124 filename="${fbname%.*}"
126 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
129 info "Signing the framework nib files"
130 for i in `find VLC.app/Contents/Frameworks/* -type f -name "*.nib" -exec echo {} \;`
132 fbname=$(basename "$i")
133 filename="${fbname%.*}"
135 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
138 info "Signing the headers"
139 for i in `find VLC.app/Contents/MacOS/include/* -type f -exec echo {} \;`
141 fbname=$(basename "$i")
142 filename="${fbname%.*}"
144 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
147 info "Signing the modules"
149 for i in `find VLC.app/Contents/MacOS/plugins/* -type f -exec echo {} \;`
151 fbname=$(basename "$i")
152 filename="${fbname%.*}"
154 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
157 info "Signing the libraries"
159 for i in `find VLC.app/Contents/MacOS/lib/* -type f -exec echo {} \;`
161 fbname=$(basename "$i")
162 filename="${fbname%.*}"
164 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
169 for i in `find VLC.app/Contents/MacOS/share/* -type f -exec echo {} \;`
171 fbname=$(basename "$i")
172 filename="${fbname%.*}"
174 codesign --force -s "$IDENTITY" --preserve-metadata=identifier,entitlements --requirements "$FIRSTPARTOF_REQUIREMENT$filename$SECONDPARTOF_REQUIREMENT" --timestamp=none $i
177 info "Signing the executable"
178 IDENTIFIER="org.videolan.vlc"
179 codesign --force -s "$IDENTITY" --requirements "$FIRSTPARTOF_REQUIREMENT$IDENTIFIER$SECONDPARTOF_REQUIREMENT" --timestamp=none VLC.app/Contents/MacOS/VLC
182 info "all items signed, validating..."
184 info "Validating frameworks"
185 codesign --verify -vv VLC.app/Contents/Frameworks/Growl.framework
186 codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework
188 info "Validating autoupdate app"
189 codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework/Versions/Current/Resources/Autoupdate.app
191 info "Validating complete bundle"
192 codesign --verify --deep --verbose=4 VLC.app
195 info "Validation complete"