<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ipatch</id>
	<title>Inkscape Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ipatch"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/Ipatch"/>
	<updated>2026-04-08T06:31:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=114801</id>
		<title>CompilingMacOsX</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=114801"/>
		<updated>2019-04-29T17:24:05Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: /* Using Homebrew */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Using MacPorts =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Install [http://developer.apple.com/tools/xcode/ Xcode tools] from the App Store&lt;br /&gt;
&amp;lt;li&amp;gt;Download and install [http://www.macports.org/ MacPorts]&lt;br /&gt;
&amp;lt;li&amp;gt;Edit the MacPorts variants config (optional).&lt;br /&gt;
&amp;lt;br&amp;gt;Add this line to &amp;lt;code&amp;gt;/opt/local/etc/macports/variants.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;-x11 +quartz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal (Applications&amp;gt;Utilities&amp;gt;Terminal) type&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo port selfupdate&lt;br /&gt;
sudo port install \&lt;br /&gt;
     cmake cairo boehmgc intltool libxslt lcms2 boost \&lt;br /&gt;
     poppler gsl adwaita-icon-theme gdl3 gtkmm3 libsoup \&lt;br /&gt;
     double-conversion \&lt;br /&gt;
     -x11 +quartz&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal, get Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;git clone --recurse-submodules git@gitlab.com:inkscape/inkscape.git&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;And build inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# use a clean MacPorts environment (optional)&lt;br /&gt;
LIBPREFIX=&amp;quot;/opt/local&amp;quot;&lt;br /&gt;
export PATH=&amp;quot;$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to build and install&lt;br /&gt;
PREFIX=&amp;quot;$PWD/install-prefix&amp;quot;&lt;br /&gt;
mkdir build&lt;br /&gt;
cd build&lt;br /&gt;
&lt;br /&gt;
cmake \&lt;br /&gt;
    -DCMAKE_PREFIX_PATH=&amp;quot;$LIBPREFIX&amp;quot; \&lt;br /&gt;
    -DCMAKE_INSTALL_PREFIX=&amp;quot;$PREFIX&amp;quot; \&lt;br /&gt;
    -DWITH_OPENMP=OFF \&lt;br /&gt;
    ..&lt;br /&gt;
&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Run Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$PREFIX/bin/inkscape&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Speed up Installation ==&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;[https://en.wikipedia.org/wiki/Ccache ccache]&amp;lt;/code&amp;gt; (&amp;lt;code&amp;gt;sudo port install ccache&amp;lt;/code&amp;gt;) to speed up re-compilation.&lt;br /&gt;
Also, [https://ninja-build.org/ ninja] (&amp;lt;code&amp;gt;sudo port install ninja&amp;lt;/code&amp;gt;) is a faster alternative to &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;.&lt;br /&gt;
Modify your call to &amp;lt;code&amp;gt;cmake&amp;lt;/code&amp;gt; like this:&lt;br /&gt;
&lt;br /&gt;
 cmake \&lt;br /&gt;
        -DCMAKE_C_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
        -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
        -G Ninja \&lt;br /&gt;
        # more cmake options here&lt;br /&gt;
 &lt;br /&gt;
 ninja&lt;br /&gt;
 ninja install&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
Linking fails with:&lt;br /&gt;
&lt;br /&gt;
 ld: framework not found -lCocoa&lt;br /&gt;
&lt;br /&gt;
A patch like this should help (reverts part of&lt;br /&gt;
[https://gitlab.com/inkscape/inkscape/commit/48e6c2ea4fc0245afc35cbbc6563804abf421ccd 48e6c2ea4f], see also&lt;br /&gt;
[https://gitlab.com/inkscape/inkscape/merge_requests/397 !397]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;diff&amp;quot;&amp;gt;&lt;br /&gt;
diff --git a/CMakeScripts/DefineDependsandFlags.cmake b/CMakeScripts/DefineDependsandFlags.cmake&lt;br /&gt;
index 4cb63aae80..7a0b5cbc75 100644&lt;br /&gt;
--- a/CMakeScripts/DefineDependsandFlags.cmake&lt;br /&gt;
+++ b/CMakeScripts/DefineDependsandFlags.cmake&lt;br /&gt;
@@ -253,7 +253,7 @@ pkg_check_modules(GTKSPELL3 gtkspell3-3.0)&lt;br /&gt;
 if(&amp;quot;${GTKSPELL3_FOUND}&amp;quot;)&lt;br /&gt;
     message(STATUS &amp;quot;Using GtkSpell 3&amp;quot;)&lt;br /&gt;
     list(APPEND INKSCAPE_INCS_SYS ${GTKSPELL3_INCLUDE_DIRS})&lt;br /&gt;
-    list(APPEND INKSCAPE_LIBS ${GTKSPELL3_LDFLAGS})&lt;br /&gt;
+    list(APPEND INKSCAPE_LIBS ${GTKSPELL3_LIBRARIES})&lt;br /&gt;
     set(WITH_GTKSPELL ON)&lt;br /&gt;
 else()&lt;br /&gt;
     set(WITH_GTKSPELL OFF)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Using Homebrew =&lt;br /&gt;
&lt;br /&gt;
The Inkscape CI job uses homebrew, see [https://gitlab.com/inkscape/inkscape/blob/master/.gitlab-ci.yml#L51-71 .gitlab-ci.yml]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/ipatch/homebrew-us-05/blob/master/inkscape/inkscape-building-for-macOS.md See] for a collection of notes using homebrew infrastructure 🛣 to build Inkscape 1.x from master using CMake + Ninja&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
&lt;br /&gt;
{{Needs_update}}&lt;br /&gt;
&lt;br /&gt;
== Extension Python modules  ==&lt;br /&gt;
&lt;br /&gt;
In case you are using a Python version installed through MacPorts do a search for both modules and install the ones suitable for the Python version activated within MacPorts.&lt;br /&gt;
&amp;lt;pre&amp;gt;port search lxml numpy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For further info refer to the [[GettingEffectsWorking#on_Mac_OS_X|Getting Effects Working]] section of this wiki.&lt;br /&gt;
&lt;br /&gt;
== Creating an .app bundle ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Creating a disk image to distribute Inkscape ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
&lt;br /&gt;
== User Examples ==&lt;br /&gt;
* [github.com/ipatch] | A recent '''2019''' collection of notes about building Inkscape from master using CMake + Ninja | [https://github.com/ipatch/homebrew-us-05/blob/master/inkscape/inkscape-building-for-macOS.md Notes]&lt;br /&gt;
* Adam Strzeleki has outlined some improvements to this process on the Inkscape [http://www.nabble.com/Inkscape-native-Mac-OS-X-build---look-improvements-td14733036.html email list]. See his screenshot from January 10, 2008 [http://www.nabble.com/attachment/14733036/1/Inkscape%20OSX%20PL.gif here].&lt;br /&gt;
* JiHO has a video of his builds [http://jo.irisson.free.fr/?p=34 here] and [http://jo.irisson.free.fr/?p=62 here].&lt;br /&gt;
* Mac OS X native (aqua), PPC-only, Tiger-only build of 0.47, can be retrieved here: [http://verkehrsplanung.com/Inkscape_aqua_PPC_047.zip]. NOT FOR PRODUCTIVE USE - JUST TESTING! - (Nevertheless I'm doing quite a bit productive work on it… (-;)&lt;br /&gt;
&lt;br /&gt;
== Apple Documentation ==&lt;br /&gt;
* [http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/BPRuntimeConfig.html Introduction to Runtime Configuration] Covers the Info.plist files, Preferences, Environment variables and has a list of the most important Properties that the Property List should contain.&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sveinbjorn.org/platypus Sveinbjorn Thordarson's Website] The author of Platypus, the Script Exec wrapper that launches the Inkscape binary.&lt;br /&gt;
* [http://freespace.ausgamers.com/2005/02/creating-os-x-application-bundles-step.html  Creating OS X application bundles step by step] Covers the bundle concepts, copying libraries into the bundle, editing libraries with the install_name_tool, the Info.plist file and adding an icon.&lt;br /&gt;
* [http://java.sun.com/developer/technicalArticles/JavaLP/JavaToMac3/ Bringing your Java Application to Mac OS X] I would regard this a little dated, and the detail is (unsurprisingly) Java-related, but it is a gentle introduction to the role of the .app bundle and give a most clear account of how to create one.&lt;br /&gt;
* The [http://gimp-app.sourceforge.net/gimp.app.howto.txt Gimp .app Howto] This is a very bare document, and would be of little help to you if you were new to making packages. Note that it seems to refer to a more mature Clipboard technique and Online help than we currently have; and we ought to move to parity in these areas.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
*[[Compiling Inkscape]]&lt;br /&gt;
*[[Notes on Packaging for OS X]]&lt;br /&gt;
* https://github.com/valerioa/Inkscape-MacOS-Curated-Build&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Documentation]]&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=114796</id>
		<title>CompilingMacOsX</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=114796"/>
		<updated>2019-04-29T17:22:37Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Using MacPorts =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Install [http://developer.apple.com/tools/xcode/ Xcode tools] from the App Store&lt;br /&gt;
&amp;lt;li&amp;gt;Download and install [http://www.macports.org/ MacPorts]&lt;br /&gt;
&amp;lt;li&amp;gt;Edit the MacPorts variants config (optional).&lt;br /&gt;
&amp;lt;br&amp;gt;Add this line to &amp;lt;code&amp;gt;/opt/local/etc/macports/variants.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;-x11 +quartz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal (Applications&amp;gt;Utilities&amp;gt;Terminal) type&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo port selfupdate&lt;br /&gt;
sudo port install \&lt;br /&gt;
     cmake cairo boehmgc intltool libxslt lcms2 boost \&lt;br /&gt;
     poppler gsl adwaita-icon-theme gdl3 gtkmm3 libsoup \&lt;br /&gt;
     double-conversion \&lt;br /&gt;
     -x11 +quartz&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal, get Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;git clone --recurse-submodules git@gitlab.com:inkscape/inkscape.git&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;And build inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# use a clean MacPorts environment (optional)&lt;br /&gt;
LIBPREFIX=&amp;quot;/opt/local&amp;quot;&lt;br /&gt;
export PATH=&amp;quot;$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to build and install&lt;br /&gt;
PREFIX=&amp;quot;$PWD/install-prefix&amp;quot;&lt;br /&gt;
mkdir build&lt;br /&gt;
cd build&lt;br /&gt;
&lt;br /&gt;
cmake \&lt;br /&gt;
    -DCMAKE_PREFIX_PATH=&amp;quot;$LIBPREFIX&amp;quot; \&lt;br /&gt;
    -DCMAKE_INSTALL_PREFIX=&amp;quot;$PREFIX&amp;quot; \&lt;br /&gt;
    -DWITH_OPENMP=OFF \&lt;br /&gt;
    ..&lt;br /&gt;
&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Run Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$PREFIX/bin/inkscape&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Speed up Installation ==&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;[https://en.wikipedia.org/wiki/Ccache ccache]&amp;lt;/code&amp;gt; (&amp;lt;code&amp;gt;sudo port install ccache&amp;lt;/code&amp;gt;) to speed up re-compilation.&lt;br /&gt;
Also, [https://ninja-build.org/ ninja] (&amp;lt;code&amp;gt;sudo port install ninja&amp;lt;/code&amp;gt;) is a faster alternative to &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;.&lt;br /&gt;
Modify your call to &amp;lt;code&amp;gt;cmake&amp;lt;/code&amp;gt; like this:&lt;br /&gt;
&lt;br /&gt;
 cmake \&lt;br /&gt;
        -DCMAKE_C_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
        -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
        -G Ninja \&lt;br /&gt;
        # more cmake options here&lt;br /&gt;
 &lt;br /&gt;
 ninja&lt;br /&gt;
 ninja install&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
Linking fails with:&lt;br /&gt;
&lt;br /&gt;
 ld: framework not found -lCocoa&lt;br /&gt;
&lt;br /&gt;
A patch like this should help (reverts part of&lt;br /&gt;
[https://gitlab.com/inkscape/inkscape/commit/48e6c2ea4fc0245afc35cbbc6563804abf421ccd 48e6c2ea4f], see also&lt;br /&gt;
[https://gitlab.com/inkscape/inkscape/merge_requests/397 !397]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;diff&amp;quot;&amp;gt;&lt;br /&gt;
diff --git a/CMakeScripts/DefineDependsandFlags.cmake b/CMakeScripts/DefineDependsandFlags.cmake&lt;br /&gt;
index 4cb63aae80..7a0b5cbc75 100644&lt;br /&gt;
--- a/CMakeScripts/DefineDependsandFlags.cmake&lt;br /&gt;
+++ b/CMakeScripts/DefineDependsandFlags.cmake&lt;br /&gt;
@@ -253,7 +253,7 @@ pkg_check_modules(GTKSPELL3 gtkspell3-3.0)&lt;br /&gt;
 if(&amp;quot;${GTKSPELL3_FOUND}&amp;quot;)&lt;br /&gt;
     message(STATUS &amp;quot;Using GtkSpell 3&amp;quot;)&lt;br /&gt;
     list(APPEND INKSCAPE_INCS_SYS ${GTKSPELL3_INCLUDE_DIRS})&lt;br /&gt;
-    list(APPEND INKSCAPE_LIBS ${GTKSPELL3_LDFLAGS})&lt;br /&gt;
+    list(APPEND INKSCAPE_LIBS ${GTKSPELL3_LIBRARIES})&lt;br /&gt;
     set(WITH_GTKSPELL ON)&lt;br /&gt;
 else()&lt;br /&gt;
     set(WITH_GTKSPELL OFF)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Using Homebrew =&lt;br /&gt;
&lt;br /&gt;
The Inkscape CI job uses homebrew, see [https://gitlab.com/inkscape/inkscape/blob/master/.gitlab-ci.yml#L51-71 .gitlab-ci.yml]&lt;br /&gt;
&lt;br /&gt;
= Misc =&lt;br /&gt;
&lt;br /&gt;
{{Needs_update}}&lt;br /&gt;
&lt;br /&gt;
== Extension Python modules  ==&lt;br /&gt;
&lt;br /&gt;
In case you are using a Python version installed through MacPorts do a search for both modules and install the ones suitable for the Python version activated within MacPorts.&lt;br /&gt;
&amp;lt;pre&amp;gt;port search lxml numpy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For further info refer to the [[GettingEffectsWorking#on_Mac_OS_X|Getting Effects Working]] section of this wiki.&lt;br /&gt;
&lt;br /&gt;
== Creating an .app bundle ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Creating a disk image to distribute Inkscape ==&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
&lt;br /&gt;
== User Examples ==&lt;br /&gt;
* [github.com/ipatch] | A recent '''2019''' collection of notes about building Inkscape from master using CMake + Ninja | [https://github.com/ipatch/homebrew-us-05/blob/master/inkscape/inkscape-building-for-macOS.md Notes]&lt;br /&gt;
* Adam Strzeleki has outlined some improvements to this process on the Inkscape [http://www.nabble.com/Inkscape-native-Mac-OS-X-build---look-improvements-td14733036.html email list]. See his screenshot from January 10, 2008 [http://www.nabble.com/attachment/14733036/1/Inkscape%20OSX%20PL.gif here].&lt;br /&gt;
* JiHO has a video of his builds [http://jo.irisson.free.fr/?p=34 here] and [http://jo.irisson.free.fr/?p=62 here].&lt;br /&gt;
* Mac OS X native (aqua), PPC-only, Tiger-only build of 0.47, can be retrieved here: [http://verkehrsplanung.com/Inkscape_aqua_PPC_047.zip]. NOT FOR PRODUCTIVE USE - JUST TESTING! - (Nevertheless I'm doing quite a bit productive work on it… (-;)&lt;br /&gt;
&lt;br /&gt;
== Apple Documentation ==&lt;br /&gt;
* [http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/BPRuntimeConfig.html Introduction to Runtime Configuration] Covers the Info.plist files, Preferences, Environment variables and has a list of the most important Properties that the Property List should contain.&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sveinbjorn.org/platypus Sveinbjorn Thordarson's Website] The author of Platypus, the Script Exec wrapper that launches the Inkscape binary.&lt;br /&gt;
* [http://freespace.ausgamers.com/2005/02/creating-os-x-application-bundles-step.html  Creating OS X application bundles step by step] Covers the bundle concepts, copying libraries into the bundle, editing libraries with the install_name_tool, the Info.plist file and adding an icon.&lt;br /&gt;
* [http://java.sun.com/developer/technicalArticles/JavaLP/JavaToMac3/ Bringing your Java Application to Mac OS X] I would regard this a little dated, and the detail is (unsurprisingly) Java-related, but it is a gentle introduction to the role of the .app bundle and give a most clear account of how to create one.&lt;br /&gt;
* The [http://gimp-app.sourceforge.net/gimp.app.howto.txt Gimp .app Howto] This is a very bare document, and would be of little help to you if you were new to making packages. Note that it seems to refer to a more mature Clipboard technique and Online help than we currently have; and we ought to move to parity in these areas.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
*[[Compiling Inkscape]]&lt;br /&gt;
*[[Notes on Packaging for OS X]]&lt;br /&gt;
* https://github.com/valerioa/Inkscape-MacOS-Curated-Build&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Documentation]]&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113591</id>
		<title>User:Ipatch</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113591"/>
		<updated>2019-02-10T22:13:45Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Contact ====&lt;br /&gt;
GitHub [http://github.com/ipatch @ipatch]&amp;lt;br /&amp;gt;&lt;br /&gt;
GitLab [http://gitlab.com/truckmonth @truckmonth]&amp;lt;br /&amp;gt;&lt;br /&gt;
twitter [http://twitter.com/truckmonth @truckmonth]&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113586</id>
		<title>User:Ipatch</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113586"/>
		<updated>2019-02-10T22:09:03Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Contact ====&lt;br /&gt;
GitHub @ipatch&amp;lt;br /&amp;gt;&lt;br /&gt;
GitLab @truckmonth&amp;lt;br /&amp;gt;&lt;br /&gt;
twitter @truckmonth&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113581</id>
		<title>User:Ipatch</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113581"/>
		<updated>2019-02-10T22:08:38Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: /* ipatch */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== ipatch ===&lt;br /&gt;
&lt;br /&gt;
==== Contact ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
GitHub @ipatch&amp;lt;br /&amp;gt;&lt;br /&gt;
GitLab @truckmonth&amp;lt;br /&amp;gt;&lt;br /&gt;
twitter @truckmonth&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113576</id>
		<title>User:Ipatch</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113576"/>
		<updated>2019-02-10T22:07:57Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== ipatch ==&lt;br /&gt;
&lt;br /&gt;
=== Contact ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
GitHub @ipatch&lt;br /&gt;
GitLab @truckmonth&lt;br /&gt;
twitter @truckmonth&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113571</id>
		<title>User:Ipatch</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Ipatch&amp;diff=113571"/>
		<updated>2019-02-10T22:07:11Z</updated>

		<summary type="html">&lt;p&gt;Ipatch: Created page with &amp;quot;## ipatch  ### Contact  GitHub @ipatch GitLab @truckmonth twitter @truckmonth&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;## ipatch&lt;br /&gt;
&lt;br /&gt;
### Contact&lt;br /&gt;
&lt;br /&gt;
GitHub @ipatch&lt;br /&gt;
GitLab @truckmonth&lt;br /&gt;
twitter @truckmonth&lt;/div&gt;</summary>
		<author><name>Ipatch</name></author>
	</entry>
</feed>