diff options
author | 健美猫 <weijianwen@gmail.com> | 2018-03-21 11:16:55 +0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-03-20 22:16:55 -0500 |
commit | 9b1d69c9347567f73bdc71a4e6357200bf1971b7 (patch) | |
tree | d3d3d5ddad85d80631f3e090f5d64c5a4a78d7ee /var | |
parent | 35e7b9ac44a28646340df139b07a0b689a0f2edf (diff) | |
download | spack-9b1d69c9347567f73bdc71a4e6357200bf1971b7.tar.gz spack-9b1d69c9347567f73bdc71a4e6357200bf1971b7.tar.bz2 spack-9b1d69c9347567f73bdc71a4e6357200bf1971b7.tar.xz spack-9b1d69c9347567f73bdc71a4e6357200bf1971b7.zip |
A new package: wcslib. (#7463)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/wcslib/package.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/wcslib/package.py b/var/spack/repos/builtin/packages/wcslib/package.py new file mode 100644 index 0000000000..a4ff883d47 --- /dev/null +++ b/var/spack/repos/builtin/packages/wcslib/package.py @@ -0,0 +1,35 @@ +############################################################################## +# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/spack/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## +from spack import * + + +class Wcslib(AutotoolsPackage): + """WCSLIB a C implementation of the coordinate transformations + defined in the FITS WCS papers.""" + + homepage = "http://www.atnf.csiro.au/people/mcalabre/WCS/" + url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib.tar.bz2" + + version('5.18', '67a78354be74eca4f17d3e0853d5685f') |