diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-12 22:44:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-12 09:44:02 -0500 |
commit | cde4654525888d5a02ce381f2aa73d9d39876aca (patch) | |
tree | 6eb256fd8f776cbf3b6729c3c53e494c894010c9 /var | |
parent | 6d39e6ebeac90ee794a22098c1fa96ac398758e0 (diff) | |
download | spack-cde4654525888d5a02ce381f2aa73d9d39876aca.tar.gz spack-cde4654525888d5a02ce381f2aa73d9d39876aca.tar.bz2 spack-cde4654525888d5a02ce381f2aa73d9d39876aca.tar.xz spack-cde4654525888d5a02ce381f2aa73d9d39876aca.zip |
Add new package: libspiro (#18654)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libspiro/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libspiro/package.py b/var/spack/repos/builtin/packages/libspiro/package.py new file mode 100644 index 0000000000..ae8ac30841 --- /dev/null +++ b/var/spack/repos/builtin/packages/libspiro/package.py @@ -0,0 +1,22 @@ +# 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 Libspiro(AutotoolsPackage): + """Spiro is the creation of Raph Levien. It simplifies the drawing of + beautiful curves.""" + + homepage = "https://github.com/fontforge/" + url = "https://github.com/fontforge/libspiro/archive/20200505.tar.gz" + + version('20200505', sha256='00be530b5c0ea9274baadf6c05521f0b192d4c3c1db636ac8b08efd44aaea8f5') + version('20190731', sha256='24c7d1ccc7c7fe44ff10c376aa9f96e20e505f417ee72b63dc91a9b34eeac354') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') |