This repository has been archived by the owner on Sep 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIXED: added missing mac deploy files
- Loading branch information
Showing
7 changed files
with
1,555 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### MacDeploy ### | ||
|
||
You will need the appscript package for the fancy disk image creation to work: | ||
|
||
sudo easy_install appscript | ||
|
||
For Snow Leopard (which uses [Python 2.6](http://www.python.org/download/releases/2.6/)), you will need the param_parser package: | ||
|
||
sudo easy_install argparse | ||
|
||
This script should not be run manually, instead, after building as usual: | ||
|
||
make deploy | ||
|
||
During the process, the disk image window will pop up briefly where the fancy | ||
settings are applied. This is normal, please do not interfere. | ||
|
||
When finished, it will produce `Bitcoin-Qt.dmg`. | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?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>window_bounds</key> | ||
<array> | ||
<integer>300</integer> | ||
<integer>300</integer> | ||
<integer>800</integer> | ||
<integer>620</integer> | ||
</array> | ||
<key>background_picture</key> | ||
<string>background.png</string> | ||
<key>icon_size</key> | ||
<integer>96</integer> | ||
<key>applications_symlink</key> | ||
<true/> | ||
<key>items_position</key> | ||
<dict> | ||
<key>Applications</key> | ||
<array> | ||
<integer>370</integer> | ||
<integer>156</integer> | ||
</array> | ||
<key>Bitcoin-Qt.app</key> | ||
<array> | ||
<integer>128</integer> | ||
<integer>156</integer> | ||
</array> | ||
</dict> | ||
</dict> | ||
</plist> |
Oops, something went wrong.