2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2021-03-05 00:41:48 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
2021-03-05 00:41:48 +08:00
|
|
|
class Poke(AutotoolsPackage, GNUMirrorPackage):
|
|
|
|
""""The extensible editor for structured binary data"""
|
2021-09-02 14:46:27 +08:00
|
|
|
homepage = "https://www.jemarch.net/poke.html"
|
2021-03-05 00:41:48 +08:00
|
|
|
gnu_mirror_path = 'poke/poke-1.0.tar.gz'
|
|
|
|
|
|
|
|
maintainers = ['ChristianTackeGSI']
|
|
|
|
|
|
|
|
version('1.0', sha256='de930b8700c0772b3c2cd0d0ca35f50fd3d77bdf82c6251eb516b49e8ca25b0a')
|
|
|
|
|
2021-04-02 07:45:01 +08:00
|
|
|
depends_on('pkgconfig')
|
2021-03-05 00:41:48 +08:00
|
|
|
depends_on('readline')
|
|
|
|
depends_on('bdw-gc')
|
|
|
|
depends_on('json-c')
|
|
|
|
|
|
|
|
build_directory = 'spack-build'
|