summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/poke/package.py
blob: 9addbf1afc7732036bfd022626063763d92a4248 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2013-2022 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.package import *


class Poke(AutotoolsPackage, GNUMirrorPackage):
    """ "The extensible editor for structured binary data"""

    homepage = "https://www.jemarch.net/poke.html"
    gnu_mirror_path = "poke/poke-1.0.tar.gz"

    maintainers = ["ChristianTackeGSI"]

    version("1.0", sha256="de930b8700c0772b3c2cd0d0ca35f50fd3d77bdf82c6251eb516b49e8ca25b0a")

    depends_on("pkgconfig")
    depends_on("readline")
    depends_on("bdw-gc")
    depends_on("json-c")

    build_directory = "spack-build"