Last active
December 19, 2015 16:49
-
-
Save dayne/5987036 to your computer and use it in GitHub Desktop.
Fedora QGIS build notes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir ~/gits | |
cd ~/gits | |
git clone https://github.com/qgis/Quantum-GIS.git | |
## | |
cd ~/gits/Quantum-GIS | |
mkdir build-master | |
cd build-master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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