20 lines
601 B
Python
20 lines
601 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PerlClassLoadXs(PerlPackage):
|
|
"""This module provides an XS implementation for portions of
|
|
Class::Load."""
|
|
|
|
homepage = "https://metacpan.org/pod/Class::Load::XS"
|
|
url = "http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Class-Load-XS-0.10.tar.gz"
|
|
|
|
license("Artistic-2.0")
|
|
|
|
version("0.10", sha256="5bc22cf536ebfd2564c5bdaf42f0d8a4cee3d1930fc8b44b7d4a42038622add1")
|
|
|
|
depends_on("perl-class-load", type=("build", "run"))
|