pwgen: add new package (#32053)

Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
This commit is contained in:
Olivier Cessenat 2022-08-11 17:36:12 +02:00 committed by GitHub
parent 714a211e25
commit 2d3db71729
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# 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 Pwgen(AutotoolsPackage):
"""Pwgen is a small, GPL'ed password generator which creates passwords
which can be easily memorized by a human."""
homepage = "https://sourceforge.net/projects/pwgen"
url = "https://downloads.sourceforge.net/project/pwgen/pwgen/2.08/pwgen-2.08.tar.gz"
maintainers = ["cessenat"]
version("2.08", sha256="dab03dd30ad5a58e578c5581241a6e87e184a18eb2c3b2e0fffa8a9cf105c97b")
depends_on("coreutils", type="build")