2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-11-29 01:48:34 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-11-29 01:48:34 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Help2man(AutotoolsPackage):
|
|
|
|
"""help2man produces simple manual pages from the '--help' and '--version'
|
|
|
|
output of other commands."""
|
|
|
|
|
|
|
|
homepage = "https://www.gnu.org/software/help2man/"
|
2018-08-16 14:27:21 +08:00
|
|
|
url = "https://ftpmirror.gnu.org/help2man/help2man-1.47.4.tar.xz"
|
2016-11-29 01:48:34 +08:00
|
|
|
|
2019-03-13 22:11:45 +08:00
|
|
|
version('1.47.8', sha256='528f6a81ad34cbc76aa7dce5a82f8b3d2078ef065271ab81fda033842018a8dc')
|
2016-11-29 01:48:34 +08:00
|
|
|
version('1.47.4', '544aca496a7d89de3e5d99e56a2f03d3')
|
|
|
|
|
|
|
|
depends_on('gettext', type='build')
|
2019-03-13 22:11:45 +08:00
|
|
|
depends_on('perl', type=('build', 'run'))
|