summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAlexander Baumgarten <57231081+ajxander12@users.noreply.github.com>2020-12-24 16:48:01 -0600
committerGitHub <noreply@github.com>2020-12-24 16:48:01 -0600
commit91e106ae7cda2c64b57d40c02c6bcc721b3526c8 (patch)
treec67631098b286bc40b7933754b2fc4458c44a272 /var
parent2d1c4e4b5d17d3efb83b21394b2eb975fadc5e4a (diff)
downloadspack-91e106ae7cda2c64b57d40c02c6bcc721b3526c8.tar.gz
spack-91e106ae7cda2c64b57d40c02c6bcc721b3526c8.tar.bz2
spack-91e106ae7cda2c64b57d40c02c6bcc721b3526c8.tar.xz
spack-91e106ae7cda2c64b57d40c02c6bcc721b3526c8.zip
libgff: new package at version 2.0.0 (#20233)
* libgff: new package at version 2.0.0 * Removed default cmake function, fixed flake8 error * Fixed errors
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libgff/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libgff/package.py b/var/spack/repos/builtin/packages/libgff/package.py
new file mode 100644
index 0000000000..17ad18cc7e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libgff/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2020 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 Libgff(CMakePackage):
+ """Lightweight GTF/GFF Parser, exposes a C++ interface without drawing in
+ a heavyweight dependency."""
+
+ homepage = "https://github.com/COMBINE-lab/libgff/"
+ url = "https://github.com/COMBINE-lab/libgff/archive/v2.0.0.tar.gz"
+
+ # notify when the package is updated.
+ maintainers = ['ajxander12']
+
+ version('2.0.0', sha256='7656b19459a7ca7d2fd0fcec4f2e0fd0deec1b4f39c703a114e8f4c22d82a99c')