23 lines
925 B
Python
23 lines
925 B
Python
# Copyright 2013-2020 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 PopplerData(CMakePackage):
|
|
"""This package consists of encoding files for use with poppler. The
|
|
encoding files are optional and poppler will automatically read them if
|
|
they are present. When installed, the encoding files enables poppler to
|
|
correctly render CJK and Cyrrilic properly. While poppler is licensed
|
|
under the GPL, these encoding files have different license, and thus
|
|
distributed separately."""
|
|
|
|
homepage = "https://poppler.freedesktop.org/"
|
|
url = "https://poppler.freedesktop.org/poppler-data-0.4.9.tar.gz"
|
|
|
|
version('0.4.9', sha256='1f9c7e7de9ecd0db6ab287349e31bf815ca108a5a175cf906a90163bdbe32012')
|
|
|
|
depends_on('cmake@2.6:', type='build')
|