Upload of GDAL, kealib, openjpeg, py-tuiview package builds.

This commit is contained in:
Josh Sixsmith
2016-03-25 18:27:02 +11:00
parent 38ea75e8ca
commit 540e57f026
4 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
from spack import *
class PyTuiview(Package):
"""
TuiView is a lightweight raster GIS with powerful raster attribute
table manipulation abilities.
"""
homepage = "https://bitbucket.org/chchrsc/tuiview"
url = "https://bitbucket.org/chchrsc/tuiview/get/tuiview-1.1.7.tar.gz"
version('1.1.7', '4b3b38a820cc239c8ab4a181ac5d4c30')
extends("python")
depends_on("py-pyqt")
depends_on("py-numpy")
depends_on("gdal")
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)