2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 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.
|
2018-06-08 21:35:28 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2018-06-08 21:35:28 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Pslib(AutotoolsPackage):
|
|
|
|
"""C-library to create PostScript files on the fly."""
|
|
|
|
|
|
|
|
homepage = "http://pslib.sourceforge.net/"
|
2019-10-12 16:49:54 +08:00
|
|
|
url = "https://sourceforge.net/projects/pslib/files/pslib/0.4.5/pslib-0.4.5.tar.gz"
|
2018-06-08 21:35:28 +08:00
|
|
|
|
2019-10-12 16:49:54 +08:00
|
|
|
version('0.4.5', sha256='7a33928982b281660206bb3749a4a563e3ac987eea64f41696f212df345212be')
|
2018-06-08 21:35:28 +08:00
|
|
|
|
|
|
|
depends_on('jpeg')
|
|
|
|
depends_on('libpng')
|