
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
24 lines
861 B
Python
24 lines
861 B
Python
# Copyright 2013-2019 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 Xmessage(AutotoolsPackage):
|
|
"""xmessage displays a message or query in a window. The user can click
|
|
on an "okay" button to dismiss it or can select one of several buttons
|
|
to answer a question. xmessage can also exit after a specified time."""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/app/xmessage"
|
|
url = "https://www.x.org/archive/individual/app/xmessage-1.0.4.tar.gz"
|
|
|
|
version('1.0.4', sha256='883099c3952c8cace5bd11d3df2e9ca143fc07375997435d5ff4f2d50353acca')
|
|
|
|
depends_on('libxaw')
|
|
depends_on('libxt')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|