
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
30 lines
909 B
Python
30 lines
909 B
Python
# Copyright 2013-2021 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 import *
|
|
|
|
|
|
class PerlXmlParser(PerlPackage):
|
|
"""XML::Parser - A perl module for parsing XML documents"""
|
|
|
|
homepage = "http://search.cpan.org/perldoc/XML::Parser"
|
|
url = "http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-Parser-2.44.tar.gz"
|
|
|
|
version('2.44', sha256='1ae9d07ee9c35326b3d9aad56eae71a6730a73a116b9fe9e8a4758b7cc033216')
|
|
|
|
depends_on('expat')
|
|
depends_on('perl-libwww-perl', type=('build', 'run'))
|
|
|
|
def configure_args(self):
|
|
args = []
|
|
|
|
p = self.spec['expat'].prefix.lib
|
|
args.append('EXPATLIBPATH={0}'.format(p))
|
|
p = self.spec['expat'].prefix.include
|
|
args.append('EXPATINCPATH={0}'.format(p))
|
|
|
|
return args
|