summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-extutils-pkgconfig/package.py
blob: 220e3224cd479a40b7de88fb75f7c1d411d82e69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PerlExtutilsPkgconfig(PerlPackage):
    """simplistic interface to pkg-config"""

    homepage = "https://metacpan.org/pod/ExtUtils::PkgConfig"
    url = "http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/ExtUtils-PkgConfig-1.16.tar.gz"

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

    version("1.16", sha256="bbeaced995d7d8d10cfc51a3a5a66da41ceb2bc04fedcab50e10e6300e801c6e")

    depends_on("pkgconfig", type=("build", "run"))