2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 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-09-21 06:48:20 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2017-09-21 06:48:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PerlPdfApi2(PerlPackage):
|
|
|
|
"""Facilitates the creation and modification of PDF files"""
|
|
|
|
|
2021-08-27 04:05:24 +08:00
|
|
|
homepage = "https://metacpan.org/pod/PDF::API2"
|
2017-09-21 06:48:20 +08:00
|
|
|
url = "http://search.cpan.org/CPAN/authors/id/S/SS/SSIMMS/PDF-API2-2.033.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version("2.033", sha256="9c0866ec1a3053f73afaca5f5cdbe6925903b4ce606f4bf4ac317731a69d27a0")
|
2017-09-21 06:48:20 +08:00
|
|
|
|
|
|
|
depends_on("perl-test-exception", type=("build", "run"))
|
|
|
|
depends_on("perl-test-memory-cycle", type=("build", "run"))
|
|
|
|
depends_on("perl-font-ttf", type=("build", "run"))
|