~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to makemac

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

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