diff options
-rw-r--r-- | var/spack/repos/builtin/packages/freexl/package.py | 16 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/libspatialite/package.py | 21 |
2 files changed, 37 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/freexl/package.py b/var/spack/repos/builtin/packages/freexl/package.py new file mode 100644 index 0000000000..14ca1abc77 --- /dev/null +++ b/var/spack/repos/builtin/packages/freexl/package.py @@ -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') diff --git a/var/spack/repos/builtin/packages/libspatialite/package.py b/var/spack/repos/builtin/packages/libspatialite/package.py new file mode 100644 index 0000000000..1fcb35b99d --- /dev/null +++ b/var/spack/repos/builtin/packages/libspatialite/package.py @@ -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') |