Difference between revisions of "CompilingMacOsX"
Jump to navigation
Jump to search
(potrace, remove outdated troubleshooting) |
(remove outdated stuff) |
||
Line 2: | Line 2: | ||
<ol> | <ol> | ||
<li>Download and install [http://www.macports.org/ MacPorts] | <li>Download and install [http://www.macports.org/ MacPorts] | ||
<li>Edit the MacPorts variants config (optional). | <li>Edit the MacPorts variants config (optional). | ||
Line 8: | Line 7: | ||
<pre>-x11 +quartz</pre> | <pre>-x11 +quartz</pre> | ||
<li>In Terminal (Applications>Utilities>Terminal) type | <li>In Terminal (Applications>Utilities>Terminal) type | ||
<syntaxhighlight lang="bash">sudo port | <syntaxhighlight lang="bash">sudo port install \ | ||
adwaita-icon-theme \ | |||
boehmgc \ | |||
boost \ | |||
cairo \ | |||
ccache \ | |||
cmake \ | |||
double-conversion \ | double-conversion \ | ||
gdl3 \ | |||
gettext \ | |||
gsl \ | |||
gtkmm3 \ | |||
gtk-osx-application-gtk3 \ | gtk-osx-application-gtk3 \ | ||
lcms2 \ | |||
libsoup \ | |||
libxslt \ | |||
ninja \ | |||
poppler \ | |||
potrace \ | potrace \ | ||
py-lxml \ | |||
py-numpy \ | |||
-x11 +quartz | -x11 +quartz | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 25: | Line 38: | ||
export PATH="$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin" | export PATH="$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin" | ||
# where to | # where to install | ||
PREFIX="$PWD/install-prefix" | PREFIX="$PWD/install-prefix" | ||
# where to build | |||
mkdir build | mkdir build | ||
cd build | cd build | ||
cmake \ | cmake \ | ||
-G Ninja \ | |||
-DCMAKE_PREFIX_PATH="$LIBPREFIX" \ | -DCMAKE_PREFIX_PATH="$LIBPREFIX" \ | ||
-DCMAKE_INSTALL_PREFIX="$PREFIX" \ | -DCMAKE_INSTALL_PREFIX="$PREFIX" \ | ||
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |||
-DWITH_OPENMP=OFF \ | -DWITH_OPENMP=OFF \ | ||
.. | .. | ||
ninja | |||
ninja install | |||
</syntaxhighlight> | </syntaxhighlight> | ||
''Note: Using [https://en.wikipedia.org/wiki/Ccache ccache] and [https://ninja-build.org/ ninja] is not required, but very common because it speeds up compilation.'' | |||
<li>Run Inkscape | <li>Run Inkscape | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Line 43: | Line 63: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</ol> | </ol> | ||
=See also= | =See also= | ||
* [[Tracking Dependencies]] | |||
* [[Extension requirements]] | |||
*[[Compiling Inkscape]] | *[[Compiling Inkscape]] | ||
*[[Notes on Packaging for OS X]] | *[[Notes on Packaging for OS X]] | ||
* https://github.com/valerioa/Inkscape-MacOS-Curated-Build | * https://github.com/valerioa/Inkscape-MacOS-Curated-Build | ||
* [https://github.com/ipatch/homebrew-us-05/blob/master/inkscape/inkscape-building-for-macOS.md ipatch's collection of notes] about building Inkscape using Homebrew | |||
[[Category:Developer Documentation]] | [[Category:Developer Documentation]] |
Revision as of 10:14, 2 January 2020
Using MacPorts
- Download and install MacPorts
- Edit the MacPorts variants config (optional).
Add this line to/opt/local/etc/macports/variants.conf
-x11 +quartz
- In Terminal (Applications>Utilities>Terminal) type
sudo port install \ adwaita-icon-theme \ boehmgc \ boost \ cairo \ ccache \ cmake \ double-conversion \ gdl3 \ gettext \ gsl \ gtkmm3 \ gtk-osx-application-gtk3 \ lcms2 \ libsoup \ libxslt \ ninja \ poppler \ potrace \ py-lxml \ py-numpy \ -x11 +quartz
- In Terminal, get Inkscape
git clone --recurse-submodules git@gitlab.com:inkscape/inkscape.git
- And build inkscape
# use a clean MacPorts environment (optional) LIBPREFIX="/opt/local" export PATH="$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin" # where to install PREFIX="$PWD/install-prefix" # where to build mkdir build cd build cmake \ -G Ninja \ -DCMAKE_PREFIX_PATH="$LIBPREFIX" \ -DCMAKE_INSTALL_PREFIX="$PREFIX" \ -DCMAKE_C_COMPILER_LAUNCHER=ccache \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DWITH_OPENMP=OFF \ .. ninja ninja install
Note: Using ccache and ninja is not required, but very common because it speeds up compilation.
- Run Inkscape
$PREFIX/bin/inkscape
See also
- Tracking Dependencies
- Extension requirements
- Compiling Inkscape
- Notes on Packaging for OS X
- https://github.com/valerioa/Inkscape-MacOS-Curated-Build
- ipatch's collection of notes about building Inkscape using Homebrew