2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 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.
|
2017-10-25 18:07:20 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-10-25 18:07:20 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PerlSubExporter(PerlPackage):
|
|
|
|
"""A sophisticated exporter for custom-built routines"""
|
|
|
|
|
|
|
|
homepage = "http://search.cpan.org/~rjbs/Sub-Exporter-0.987/lib/Sub/Exporter.pm"
|
|
|
|
url = "http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Sub-Exporter-0.987.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.987', sha256='543cb2e803ab913d44272c7da6a70bb62c19e467f3b12aaac4c9523259b083d6')
|
2017-10-25 18:07:20 +08:00
|
|
|
|
|
|
|
depends_on('perl-params-util', type=('build', 'run'))
|
|
|
|
depends_on('perl-data-optlist', type=('build', 'run'))
|