]> Dogcows Code - chaz/yoink/blob - macosx/mkbundle.sh.in
c71ac8cfc966917790b9e9c7cc9db6bb00d9c4fd
[chaz/yoink] / macosx / mkbundle.sh.in
1 #!/bin/sh
2
3 #
4 # Yoink
5 # Run this script to create a macosx app bundle.
6 #
7
8 # Anchor paths
9 ROOT_DIR="$PWD/.."
10
11 # Extract the bundle skeleton
12 tar xjf bundle.tar.bz2
13
14 sed -i -e 's/\@VERSION\@/@VERSION@/g' Yoink.app/Contents/Info.plist
15
16 # Prepare the binary
17 ${STRIP:-strip} "$ROOT_DIR/src/yoink"
18 cp "$ROOT_DIR/src/yoink" Yoink.app/Contents/MacOS
19
20 cp -r "$ROOT_DIR/data" Yoink.app/Contents/Resources/data
21
This page took 0.029707 seconds and 3 git commands to generate.