Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README_codesigning.txt « darwin « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3724ad1b0acd56a3d74d5898f204779ffd2abb8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Tutorial for codesigning Blender releases on OSX ( atm. i do manually when needed ):
Updated as by august 01.2014 - removed deprecated rules and not recommended deep codesigning

1. You need to obtain the certificates for blender foundation, they can bw pulled at Apple developer account for BF
2. Run the following commands from terminal:

codesign -s <IDENTITY> <path_to_blender.app>

codesign -s <IDENTITY> <path_to_blenderplayer.app>


3. Checking:

codesign -vv <path_to_blenderplayer.app>
codesign -vv <path_to_blender.app>

The result should be something like:

<build_path>/blender.app: valid on disk
<build_path>/blender.app: satisfies its Designated Requirement

<build_path>/blenderplayer.app: valid on disk
<build_path>/blenderplayer.app: satisfies its Designated Requirement

Jens Verwiebe