~ubuntu-branches/ubuntu/karmic/psi/karmic

« back to all changes in this revision

Viewing changes to makemac

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2006-01-20 00:20:36 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060120002036-7nw6yo6totip0ee5
Tags: 0.10-2
* Added upstream changelog (Closes: Bug#327748)
* Mention --no-gpg and --no-gpg-agent in manpage (Closes: Bug#204416)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
#  WARNING:
4
 
#    This script is deprecated, and probably doesn't even work any more. It's
5
 
#   here just in case there's anyone out there that still needs it. It will be
6
 
#   removed in 0.10.
7
 
qmake psi.pro
8
 
make
9
 
 
10
 
mkdir dmg
11
 
mv src/psi.app dmg/Psi.app
12
 
mkdir -p dmg/Psi.app/Contents/Frameworks
13
 
cp -f /Developer/qt/lib/libqt-mt.3.dylib dmg/Psi.app/Contents/Frameworks
14
 
cp -f README COPYING dmg
15
 
 
16
 
strip dmg/Psi.app/Contents/MacOS/psi
17
 
 
18
 
install_name_tool -id @executable_path/../Frameworks/libqt-mt.3.dylib dmg/Psi.app/Contents/Frameworks/libqt-mt.3.dylib
19
 
 
20
 
install_name_tool -change libqt-mt.3.dylib @executable_path/../Frameworks/libqt-mt.3.dylib dmg/Psi.app/Contents/MacOS/psi
21