diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/perl-time-duration/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-time-duration/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-time-duration/package.py b/var/spack/repos/builtin/packages/perl-time-duration/package.py new file mode 100644 index 0000000000..3c26ccfc9b --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-time-duration/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2024 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 PerlTimeDuration(PerlPackage): + """Rounded or exact English expression of durations""" + + homepage = "https://metacpan.org/pod/Time::Duration" + url = "https://cpan.metacpan.org/authors/id/N/NE/NEILB/Time-Duration-1.21.tar.gz" + + maintainers("EbiArnie") + + license("Artistic-1.0-Perl OR GPL-1.0-or-later") + + version("1.21", sha256="fe340eba8765f9263694674e5dff14833443e19865e5ff427bbd79b7b5f8a9b8") + + depends_on("perl@5.6.0:", type=("build", "link", "run", "test")) |