ChangeLog and postinst fix
[qstardict] / README.MACOSX
1 QStarDict for Mac OS X is set to be built as a "bundle" application.\r
2 \r
3 Distributed packages should contain all required stuff to run out-of-the-box.\r
4 \r
5 All following notes are important for developers.\r
6 \r
7 \r
8 BUILDING REQUIREMENTS:\r
9  * Qt4 libraries/frameworks (tested with macport's qt4-mac+universal)\r
10  * glib2 devel environment (I'm using macports for it too)\r
11  * all other libraries are propably part of mac's OS\r
12 \r
13 \r
14 CONFIRURE PHASE:\r
15 qmake\r
16   it will build qstardict and install it into /opt (sudo make install will be required)\r
17   or:\r
18 qmake INSTALL_PREFIX=/absolute/path/to/selected/dir\r
19   it will build qstardict and install it into this location.\r
20   The path *must* be absolute. Relative path will cause install problems.\r
21 \r
22 example:\r
23 qmake INSTALL_PREFIX=/Users/pvanek/oss/qstardict/release\r
24 \r
25 \r
26 MAKE PHASE:\r
27 just run: make\r
28 \r
29 INSTALL PHASE:\r
30 make install\r
31 \r
32 DEPLOY PHASE:\r
33 macdeployqt path/to/QStarDict.app/\r
34 or:\r
35 macdeployqt path/to/QStarDict.app/ -dmg\r
36 for dmg build (but I'm using another tool for it)\r
37 \r
38 \r