diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-31 17:12:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-31 17:12:59 -0700 |
commit | 5076397df043fb51a776a677fc771fb1a72e6496 (patch) | |
tree | 0f928a894e41cb0557e47b87009cf41ca5851ed7 /packaging | |
parent | 06ddeba47ee75e4ac0ca96e75e8b01b1fb9a60c9 (diff) | |
parent | b1a1376f3baf78ceca49b47c7b39d58983f4f984 (diff) | |
download | subsurface-5076397df043fb51a776a677fc771fb1a72e6496.tar.gz |
Merge branch 'macosx-app-bundle-1' of git://github.com/henrik242/subsurface
* 'macosx-app-bundle-1' of git://github.com/henrik242/subsurface:
Use the new packaging directory for MacOSX specific files, and provide shell script workaround to make the svg icon reachable.
Ignore process serial number argument when run as native MacOSX app
Add basic MacOSX app bundle install target
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/macosx/Info.plist | 20 | ||||
-rw-r--r-- | packaging/macosx/PkgInfo | 1 | ||||
-rw-r--r-- | packaging/macosx/Subsurface.icns | bin | 0 -> 71777 bytes | |||
-rwxr-xr-x | packaging/macosx/subsurface.sh | 5 |
4 files changed, 26 insertions, 0 deletions
diff --git a/packaging/macosx/Info.plist b/packaging/macosx/Info.plist new file mode 100644 index 000000000..4ee12438b --- /dev/null +++ b/packaging/macosx/Info.plist @@ -0,0 +1,20 @@ +<?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>CFBundleIconFile</key> + <string>Subsurface</string> + <key>CFBundleName</key> + <string>Subsurface</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleGetInfoString</key> + <string>Rough divelog in C and Gtk</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleExecutable</key> + <string>subsurface.sh</string> + <key>CFBundleIdentifier</key> + <string>torvalds.subsurface</string> +</dict> +</plist> diff --git a/packaging/macosx/PkgInfo b/packaging/macosx/PkgInfo new file mode 100644 index 000000000..6f749b0f3 --- /dev/null +++ b/packaging/macosx/PkgInfo @@ -0,0 +1 @@ +APPL???? diff --git a/packaging/macosx/Subsurface.icns b/packaging/macosx/Subsurface.icns Binary files differnew file mode 100644 index 000000000..27c077f16 --- /dev/null +++ b/packaging/macosx/Subsurface.icns diff --git a/packaging/macosx/subsurface.sh b/packaging/macosx/subsurface.sh new file mode 100755 index 000000000..ee9427c37 --- /dev/null +++ b/packaging/macosx/subsurface.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd `dirname $0`/../Resources +../MacOS/subsurface & +exit 0 |