Skip to content

tramebleue/qgis-snaps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QGIS Snaps

This project creates a working snap of QGIS (www.qgis.org). QGIS is a Geographic Information System (GIS) that supports vector, raster & database formats.

Versions of QGis

Tagged versions of the Snapcraft configuration file :

Only AMD64 versions of QGis are currently available.

Building the snap

On an Ubuntu system a snap can be built out of the snapcraft.yaml by running snapcraft in the project directory.

For a clean, system independent build it is recommanden to use the official snapcore/snapcraft Docker image. Using Docker, you’ll map the current directory into the container and then build the snap from that same directory:

docker build -t snapcraft-qgis-ubuntu .
docker run -v $PWD:$PWD -w $PWD snapcraft-qgis-ubuntu bash -c "apt update && apt upgrade -y && snapcraft clean && snapcraft"