1.1 --- a/README Tue Feb 07 08:15:12 2012 +0000
1.2 +++ b/README Fri Sep 20 23:41:09 2013 +0100
1.3 @@ -55,7 +55,14 @@
1.4 Mac
1.5 ---
1.6
1.7 -The least intrusive means to build on a Mac is to use Homebrew:
1.8 +The least intrusive means to build on a Mac is to use Homebrew. However,
1.9 +Homebrew is not compatible with fink so if you have previously used fink
1.10 +then you need an alternative solution, such as MacPorts (see below).
1.11 +
1.12 +It may also be possible to use fink itself.
1.13 +
1.14 +Mac using Homebrew
1.15 +------------------
1.16
1.17 http://mxcl.github.com/homebrew/
1.18
1.19 @@ -107,4 +114,19 @@
1.20 when it is asked to prefer static libraries to dynamic ones.) Removing the
1.21 dynamic libraries first will solve this problem.
1.22
1.23 -It may also be possible to use fink or macports.
1.24 +Mac using MacPorts
1.25 +------------------
1.26 +
1.27 +Install MacPorts from http://www.macports.org/.
1.28 +
1.29 +Install pkgconfig (required to build glib) and then glib itself:
1.30 +
1.31 +$ sudo port install pkgconfig
1.32 +$ sudo port install glib2
1.33 +
1.34 +Then install bookloupe as normal, telling configure where to find glib's
1.35 +package configuration file:
1.36 +
1.37 +$ ./configure PKG_CONFIG_PATH=/opt/local/lib/pkgconfig
1.38 +$ make
1.39 +$ make install