aboutsummaryrefslogtreecommitdiff
path: root/contrib/macdeploy/notes.txt
diff options
context:
space:
mode:
authorp2k <patrick.p2k.schneider@gmail.com>2011-11-02 14:58:50 +0100
committerp2k <patrick.p2k.schneider@gmail.com>2011-11-02 14:58:50 +0100
commit6eaa1b36fcf5a3b28c2440a3cf8ab4780f1afef9 (patch)
tree77ba931c5cd3920cd9e1f230ca8b1d2ed542eaf0 /contrib/macdeploy/notes.txt
parentfbea7eca656bf5797a2c5cf748715a1ae332835b (diff)
downloadbitcoin-6eaa1b36fcf5a3b28c2440a3cf8ab4780f1afef9.tar.xz
Mac Deployment Script
See notes.txt in contrib/macdeploy. Also added a dash to the application name in src/qt/bitcoin.cpp
Diffstat (limited to 'contrib/macdeploy/notes.txt')
-rw-r--r--contrib/macdeploy/notes.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/macdeploy/notes.txt b/contrib/macdeploy/notes.txt
new file mode 100644
index 0000000000..ac794d0f7a
--- /dev/null
+++ b/contrib/macdeploy/notes.txt
@@ -0,0 +1,26 @@
+
+macdeployqtplus works best on OS X Lion, for Snow Leopard you'd need to install
+Python 2.7 and make it your default Python installation.
+
+You will need the appscript package for the fancy disk image creation to work.
+Install it by invoking "sudo easy_install appscript".
+
+Ths script should be invoked in the target directory like this:
+$source_dir/contrib/macdeploy/macdeployqtplus Bitcoin-Qt.app -add-qt-tr de,ru -dmg -fancy $source_dir/contrib/macdeploy/fancy.plist
+
+During the process, the disk image window will pop up briefly where the fancy
+settings are applied. This is normal, please do not interfere.
+
+You can also set up Qt Creator for invoking the script. For this, go to the
+"Projects" tab on the left side, switch to "Run Settings" above and add a
+deploy configuration. Next add a deploy step choosing "Custom Process Step".
+Fill in the following.
+
+Enable custom process step: [x]
+Command: %{sourceDir}/contrib/macdeploy/macdeployqtplus
+Working directory: %{buildDir}
+Command arguments: Bitcoin-Qt.app -add-qt-tr de,ru -dmg -fancy %{sourceDir}/contrib/macdeploy/fancy.plist
+
+After that you can start the deployment process through the menu with
+Build -> Deploy Project "bitcoin-qt"
+