
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
20 lines
665 B
Python
20 lines
665 B
Python
# Copyright 2013-2018 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 Pdf2svg(AutotoolsPackage):
|
|
"""A simple PDF to SVG converter using the Poppler and Cairo libraries."""
|
|
|
|
homepage = "http://www.cityinthesky.co.uk/opensource/pdf2svg"
|
|
url = "https://github.com/dawbarton/pdf2svg/archive/v0.2.3.tar.gz"
|
|
|
|
version('0.2.3', 'd398b3b1c1979f554596238a44f12123')
|
|
version('0.2.2', 'f7e0d2213f9e1422cee9421e18f72553')
|
|
|
|
depends_on('cairo', type='run')
|
|
depends_on('poppler', type='run')
|