summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-alien-libxml2/package.py
blob: 1e654f761c5a6bfe3247c945d5d86ba36c15683a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2023 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 PerlAlienLibxml2(PerlPackage):
    """This module provides libxml2 for other modules to use."""

    homepage = "https://metacpan.org/pod/Alien::Libxml2"
    url = "https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Libxml2-0.10_01.tar.gz"

    license("GPL-1.0-or-later OR Artistic-1.0-Perl")

    version("0.10_01", sha256="2f45b308b33503292f48bf46a75fe1e653d6b209ba5caf0628d8cc103f8d61ac")

    depends_on("libxml2")
    depends_on("perl-alien-build", type=("build", "run"))
    depends_on("pkgconfig", type=("build"))