Skip to content

Instantly share code, notes, and snippets.

@dayne
Last active December 19, 2015 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dayne/5987036 to your computer and use it in GitHub Desktop.
Save dayne/5987036 to your computer and use it in GitHub Desktop.
Fedora QGIS build notes
Notes on a build for a local QGIS on Fedora.
Taken from my old jumbled notes from:
http://dayne.broderson.org/2011/08/14/qgis_on_fedora_15.html
http://dayne.broderson.org/2011/07/21/qgis_from_git.html
yum install cmake flex bison qt4-devel sqlite3-devel qwt-devel \
git proj-devel geos-devel gdal-devel \
graphviz graphviz-devel doxygen grass-devel grass \
compat-expat1 expat-devel gsl-devel PyQt4-devel \
qt-webkit qt-webkit-devel PyQwt PyQwt-devel
mkdir ~/gits
cd ~/gits
git clone https://github.com/qgis/Quantum-GIS.git
##
cd ~/gits/Quantum-GIS
mkdir build-master
cd build-master
ccmake ..
# OR you can : #
cmake -DCMAKE_INSTALL_PREFIX:PATH=${HOME}/qgis -DGDAL_LIBRARY:STRING=/usr/lib64/libgdal.so ..
cmake -L # check out what it will be doing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment