Add ladot package (#10905)
This commit is contained in:
parent
4e6285a19b
commit
cba5a8058e
28
var/spack/repos/builtin/packages/ladot/package.py
Normal file
28
var/spack/repos/builtin/packages/ladot/package.py
Normal file
@ -0,0 +1,28 @@
|
||||
# Copyright 2013-2019 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 Ladot(Package):
|
||||
"""Ladot is a script that makes using LaTeX in graphs generated by dot
|
||||
(graphviz) relatively easy."""
|
||||
|
||||
homepage = "https://brighten.bigw.org/projects/ladot/"
|
||||
url = "https://brighten.bigw.org/projects/ladot/ladot-1.2.tar.gz"
|
||||
|
||||
version('1.2', sha256='f829eeca829b82c0315cd87bffe410bccab96309b86b1c883b3ddaa93170f25e')
|
||||
|
||||
depends_on('perl', type=('run', 'test'))
|
||||
depends_on('graphviz', type=('run', 'test'))
|
||||
depends_on('texlive', type='test')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
if self.run_tests:
|
||||
with working_dir('example'):
|
||||
make()
|
||||
|
||||
mkdir(prefix.bin)
|
||||
install('ladot', prefix.bin)
|
Loading…
Reference in New Issue
Block a user