summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Stanley <molecuul@users.noreply.github.com>2018-10-19 19:57:46 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2018-10-19 17:57:46 -0700
commit29cb82c9881d6eaecff3461f384172aa92513943 (patch)
tree32d5f6250efdd9f49cb9ede2701b56ae8649e801
parentd048bbb7ee2d02c68496393a3ebf247412d8eb01 (diff)
downloadspack-29cb82c9881d6eaecff3461f384172aa92513943.tar.gz
spack-29cb82c9881d6eaecff3461f384172aa92513943.tar.bz2
spack-29cb82c9881d6eaecff3461f384172aa92513943.tar.xz
spack-29cb82c9881d6eaecff3461f384172aa92513943.zip
new package: lastz (starting at 1.04.00) (#9593)
-rw-r--r--var/spack/repos/builtin/packages/lastz/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/lastz/package.py b/var/spack/repos/builtin/packages/lastz/package.py
new file mode 100644
index 0000000000..1b438c81b6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/lastz/package.py
@@ -0,0 +1,18 @@
+# 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 Lastz(MakefilePackage):
+ """LASTZ is a program for aligning DNA sequences, a pairwise aligner."""
+
+ homepage = "https://lastz.github.io/lastz"
+ url = "https://github.com/lastz/lastz/archive/1.04.00.tar.gz"
+
+ version('1.04.00', sha256='a4c2c7a77430387e96dbc9f5bdc75874334c672be90f5720956c0f211abf9f5a')
+
+ def install(self, spec, prefix):
+ make('install', 'LASTZ_INSTALL={0}'.format(prefix.bin))