diff options
author | Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com> | 2013-02-17 00:12:04 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-16 15:43:30 -0800 |
commit | 44c7e02c94a756de9bb111041b102fbcdae8c612 (patch) | |
tree | 92262c35b433e78da68f8af551915e9b73052d0a /packaging | |
parent | 576d5a22cac0dbb8315012eb0ea93884be385cda (diff) | |
download | subsurface-44c7e02c94a756de9bb111041b102fbcdae8c612.tar.gz |
Remove useless curly brackets.
Signed-off-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/macosx/make-package.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/packaging/macosx/make-package.sh b/packaging/macosx/make-package.sh index 9c21b3a79..991a18405 100755 --- a/packaging/macosx/make-package.sh +++ b/packaging/macosx/make-package.sh @@ -12,7 +12,7 @@ # adjust to your install location of gtk-mac-bundler. I appear to need at # least 0.7.2 BUNDLER=../.local/bin/gtk-mac-bundler -BUNDLER_SRC=${HOME}/gtk-mac-bundler +BUNDLER_SRC=$HOME/gtk-mac-bundler # install location of yourway-create-dmg DMGCREATE=../yoursway-create-dmg/create-dmg @@ -32,7 +32,7 @@ VERSION=$(./scripts/get-version darwin) # export APPLICATION_CERT=Dirk # force rebuilding of Info.plist -rm ${INFOPLIST} +rm $INFOPLIST # first build and install Subsurface and then clean up the staging area make @@ -40,12 +40,12 @@ make install-macosx rm -rf ./staging # now populate it with the bundle -${BUNDLER} packaging/macosx/subsurface.bundle +$BUNDLER packaging/macosx/subsurface.bundle # correct the paths and names cd staging/Subsurface.app/Contents for i in Resources/lib/gdk-pixbuf-2.0/2.10.0/loaders/* ; do - ${BUNDLER_SRC}/bundler/run-install-name-tool-change.sh $i ${PREFIX} Resources change ; + $BUNDLER_SRC/bundler/run-install-name-tool-change.sh $i $PREFIX Resources change ; done for i in Resources/lib/*.dylib; do @@ -57,13 +57,13 @@ cd ../../.. codesign -s Dirk ./staging/Subsurface.app/Contents/MacOS/subsurface \ ./staging/Subsurface.app/Contents/MacOS/subsurface-bin -if [ -f ./Subsurface-${VERSION}.dmg ]; then - rm ./Subsurface-${VERSION}.dmg.bak - mv ./Subsurface-${VERSION}.dmg ./Subsurface-${VERSION}.dmg.bak +if [ -f ./Subsurface-$VERSION.dmg ]; then + rm ./Subsurface-$VERSION.dmg.bak + mv ./Subsurface-$VERSION.dmg ./Subsurface-$VERSION.dmg.bak fi -${DMGCREATE} --background ./packaging/macosx/DMG-Background.png \ - --window-size 500 300 --icon-size 96 --volname Subsurface-${VERSION} \ +$DMGCREATE --background ./packaging/macosx/DMG-Background.png \ + --window-size 500 300 --icon-size 96 --volname Subsurface-$VERSION \ --app-drop-link 380 205 \ --volicon ~/subsurface/packaging/macosx/Subsurface.icns \ - --icon "Subsurface" 110 205 ./Subsurface-${VERSION}.dmg ./staging + --icon "Subsurface" 110 205 ./Subsurface-$VERSION.dmg ./staging |