summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDr. Christian Tacke <58549698+ChristianTackeGSI@users.noreply.github.com>2021-03-04 17:41:48 +0100
committerGitHub <noreply@github.com>2021-03-04 17:41:48 +0100
commit04cd884c9539f1653850a689c97a62eb680562d8 (patch)
treed7a7114a2179a05dd14b74d11da98f663456d90f /var
parent71954d9665fae674a20be52602f19678943e7a19 (diff)
downloadspack-04cd884c9539f1653850a689c97a62eb680562d8.tar.gz
spack-04cd884c9539f1653850a689c97a62eb680562d8.tar.bz2
spack-04cd884c9539f1653850a689c97a62eb680562d8.tar.xz
spack-04cd884c9539f1653850a689c97a62eb680562d8.zip
poke: new package at v1.0 (#22085)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/poke/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/poke/package.py b/var/spack/repos/builtin/packages/poke/package.py
new file mode 100644
index 0000000000..c827412ba2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/poke/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2021 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)
+
+
+class Poke(AutotoolsPackage, GNUMirrorPackage):
+ """"The extensible editor for structured binary data"""
+ homepage = "http://www.jemarch.net/poke.html"
+ gnu_mirror_path = 'poke/poke-1.0.tar.gz'
+
+ maintainers = ['ChristianTackeGSI']
+
+ version('1.0', sha256='de930b8700c0772b3c2cd0d0ca35f50fd3d77bdf82c6251eb516b49e8ca25b0a')
+
+ depends_on('pkgconf')
+ depends_on('readline')
+ depends_on('bdw-gc')
+ depends_on('json-c')
+
+ build_directory = 'spack-build'