summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/jackcess/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/jackcess/package.py')
-rw-r--r--var/spack/repos/builtin/packages/jackcess/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/jackcess/package.py b/var/spack/repos/builtin/packages/jackcess/package.py
new file mode 100644
index 0000000000..d55357bccf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/jackcess/package.py
@@ -0,0 +1,27 @@
+# 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 Jackcess(Package):
+ """Jackcess is a pure Java library for reading from and writing to
+ MS Access databases (currently supporting versions 2000-2016)."""
+
+ homepage = "http://jackcess.sourceforge.net/"
+ url = "https://sourceforge.net/projects/jackcess/files/jackcess/2.1.12/jackcess-2.1.12.jar"
+
+ version('2.1.12', '7d051d8dd93f2fe7e5e86389ea380619', expand=False)
+ version('1.2.14.3', 'ef778421c1385ac9ab4aa7edfb954caa', expand=False)
+
+ extends('jdk')
+ depends_on('java', type='run')
+ depends_on('commons-lang@2.6', when='@2.1.12', type='run')
+ depends_on('commons-lang@2.4', when='@1.2.14.3', type='run')
+ depends_on('commons-logging@1.1.3', when='@2.1.12', type='run')
+ depends_on('commons-logging@1.1.1', when='@1.2.14.3', type='run')
+
+ def install(self, spec, prefix):
+ install('jackcess-{0}.jar'.format(self.version), prefix)