Skip to content

Instantly share code, notes, and snippets.

@frafra
Created December 8, 2017 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frafra/bb5f162bd66c7f2b2a65155d72b46df7 to your computer and use it in GitHub Desktop.
Save frafra/bb5f162bd66c7f2b2a65155d72b46df7 to your computer and use it in GitHub Desktop.
inkscape-devel on Fedora 27

How to install Inkscape devel on Fedora 27

Installation

# dnf build-dep inkscape
# dnf install gcc-c++ libsoup-devel gtkmm30-devel
$ git clone -b master https://git.launchpad.net/inkscape --depth 1
$ mkdir -p inkscape/build/conf
$ cd inkscape
$ ln -s . share/inkscape
$ ./download-gtest.sh
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=$PWD/../ ..
$ make -j8
$ echo "alias inkscape-devel='INKSCAPE_PROFILE_DIR=$PWD/conf $PWD/bin/inkscape'" >> $HOME/.bashrc
$ source $HOME/.bashrc

Run (from terminal)

$ inkscape-devel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment