spek

Acoustic spectrum analyser
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

commit 1ea359b8ad7eafe689c4d8bc5daf49d5fcf443a0
parent f3f796ab942630ced514341b8cdaa6c586c553cc
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date:   Thu, 31 Mar 2011 09:02:18 +0800

osx: Update bundle.sh to location change

Diffstat:
M.gitignore | 6+++---
Mdist/osx/bundle.sh | 10+++++-----
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -18,6 +18,9 @@ configure data/spek.desktop data/spek.desktop.in depcomp +dist/osx/Spek.app +dist/osx/Spek.dmg +dist/osx/bin dist/win/spek.wxs install-sh intltool-extract.in @@ -29,9 +32,6 @@ man/spek.1 missing mkinstalldirs omf.make -osx/Spek.app -osx/Spek.dmg -osx/bin po/*.gmo po/.intltool-merge-cache po/POTFILES diff --git a/dist/osx/bundle.sh b/dist/osx/bundle.sh @@ -1,6 +1,6 @@ #!/bin/sh -cd $(dirname $0)/.. +cd $(dirname $0)/../.. case "$(uname)" in Darwin) profile_name=darwin ;; *) @@ -9,14 +9,14 @@ case "$(uname)" in ;; esac -./autogen.sh --prefix=$(pwd)/osx/bin +./autogen.sh --prefix=$(pwd)/dist/osx/bin gmake gmake install -ige-mac-bundler osx/spek.bundle +ige-mac-bundler dist/osx/spek.bundle # Make DMG image -cd osx +cd dist/osx VOLUME_NAME=Spek DMG_APP=Spek.app DMG_FILE=$VOLUME_NAME.dmg @@ -66,4 +66,4 @@ if [ ! "x$1" = "x-m" ]; then rm $DMG_FILE.master fi -cd .. +cd ../..