summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorNeil Flood <neilflood@fastmail.fm>2018-11-23 05:54:52 +1000
committerAdam J. Stewart <ajstewart426@gmail.com>2018-11-22 13:54:52 -0600
commit3557b6e14903c02bcc0a19b34c8b4c64f3d05ca3 (patch)
tree145afd151199dd38bafb750a07406704cb431c04 /var
parent13f2e686887ffcf8dc9ef89aa1d6fa2dddf8c118 (diff)
downloadspack-3557b6e14903c02bcc0a19b34c8b4c64f3d05ca3.tar.gz
spack-3557b6e14903c02bcc0a19b34c8b4c64f3d05ca3.tar.bz2
spack-3557b6e14903c02bcc0a19b34c8b4c64f3d05ca3.tar.xz
spack-3557b6e14903c02bcc0a19b34c8b4c64f3d05ca3.zip
libspatialite: new package (#9923)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/freexl/package.py16
-rw-r--r--var/spack/repos/builtin/packages/libspatialite/package.py21
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')