libspatialite: new package (#9923)

This commit is contained in:
Neil Flood 2018-11-23 05:54:52 +10:00 committed by Adam J. Stewart
parent 13f2e68688
commit 3557b6e149
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Freexl(AutotoolsPackage):
"""FreeXL is an open source library to extract valid data from within
an Excel (.xls) spreadsheet."""
homepage = "http://www.gaia-gis.it"
url = "http://www.gaia-gis.it/gaia-sins/freexl-1.0.5.tar.gz"
version('1.0.5', '3ed2a0486f03318820b25f0ccae5e14d')

View File

@ -0,0 +1,21 @@
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Libspatialite(AutotoolsPackage):
"""SpatiaLite is an open source library intended to extend the
SQLite core to support fully fledged Spatial SQL capabilities."""
homepage = "http://www.gaia-gis.it"
url = "http://www.gaia-gis.it/gaia-sins/libspatialite-4.3.0a.tar.gz"
version('4.3.0a', '6b380b332c00da6f76f432b10a1a338c')
depends_on('sqlite')
depends_on('proj')
depends_on('geos')
depends_on('freexl')