diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2019-12-27 17:18:16 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2019-12-27 15:18:16 -0800 |
commit | 2166a91ec50270fcc99a14021b3ab3539b302423 (patch) | |
tree | 18eb5a1b50b276ae91b8be95e526f3b3df8d2cb0 | |
parent | 6c957b6b6281b06718d2028402d6cd3ae9d179f7 (diff) | |
download | spack-2166a91ec50270fcc99a14021b3ab3539b302423.tar.gz spack-2166a91ec50270fcc99a14021b3ab3539b302423.tar.bz2 spack-2166a91ec50270fcc99a14021b3ab3539b302423.tar.xz spack-2166a91ec50270fcc99a14021b3ab3539b302423.zip |
New package - libpaper (#14302)
This PR adds the paper library to spack.
-rw-r--r-- | var/spack/repos/builtin/packages/libpaper/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libpaper/package.py b/var/spack/repos/builtin/packages/libpaper/package.py new file mode 100644 index 0000000000..76078abec6 --- /dev/null +++ b/var/spack/repos/builtin/packages/libpaper/package.py @@ -0,0 +1,22 @@ +# 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 Libpaper(AutotoolsPackage): + """The paper library and accompanying files are intended to provide a + simple way for applications to take actions based on a system- or + user-specified paper size.""" + + homepage = "https://packages.debian.org/unstable/source/libpaper" + url = "http://deb.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.28.tar.gz" + + version('1.1.28', sha256='c8bb946ec93d3c2c72bbb1d7257e90172a22a44a07a07fb6b802a5bb2c95fddc') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') |