Difference between revisions of "CompilingUbuntu"
(describe how to build libgc) |
(remove all redundant content that is already covered in https://inkscape.org/develop/getting-started/) |
||
(63 intermediate revisions by 23 users not shown) | |||
Line 1: | Line 1: | ||
== | == Consider using pre-built packages == | ||
If you' | This is a short how to build the latest development version. '''If you don't want to change the source code, you can avoid this effort and use pre-built packages''', either the well-tested stable version, or the newest developer's version intended for testing. See [[Installing_Inkscape#Ubuntu_or_Debian_Linux]]. | ||
== Compiling unstable developement version == | |||
Please refer to https://inkscape.org/en/develop/getting-started/ | |||
=== Installing === | |||
If you used some CMAKE_INSTALL_PREFIX other than /usr, then you may install using usual 'make install' or 'sudo make install', depending on the location. | |||
If the the location prefix was /usr, then "sudo make install" is not recommended, as debian package manager would know nothing about new package. The better alternative is using checkinstall. If checkinstall is not installed, you can install it the usual way "sudo apt-get install checkinstall". | |||
<pre> | <pre> | ||
sudo checkinstall | sudo checkinstall | ||
</pre> | </pre> | ||
Happy inkscapeing. | |||
[[Category:Developer Documentation]] | [[Category:Developer Documentation]] |
Latest revision as of 20:06, 16 February 2020
Consider using pre-built packages
This is a short how to build the latest development version. If you don't want to change the source code, you can avoid this effort and use pre-built packages, either the well-tested stable version, or the newest developer's version intended for testing. See Installing_Inkscape#Ubuntu_or_Debian_Linux.
Compiling unstable developement version
Please refer to https://inkscape.org/en/develop/getting-started/
Installing
If you used some CMAKE_INSTALL_PREFIX other than /usr, then you may install using usual 'make install' or 'sudo make install', depending on the location. If the the location prefix was /usr, then "sudo make install" is not recommended, as debian package manager would know nothing about new package. The better alternative is using checkinstall. If checkinstall is not installed, you can install it the usual way "sudo apt-get install checkinstall".
sudo checkinstall
Happy inkscapeing.