Files
spack/var/spack/repos/builtin/packages/sofa-c/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

32 lines
1.1 KiB
Python

# Copyright 2013-2018 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 SofaC(MakefilePackage):
"Standards of Fundamental Astronomy (SOFA) library for ANSI C."
homepage = "http://www.iausofa.org/current_C.html"
url = "http://www.iausofa.org/2018_0130_C/sofa_c-20180130.tar.gz"
version('20180130', '9d6903c7690e84a788b622fba6f10146')
@property
def build_directory(self):
return join_path(self.version, 'c', 'src')
def edit(self, spec, prefix):
makefile = FileFilter(join_path(self.build_directory, 'makefile'))
makefile.filter('CCOMPC = gcc', 'CCOMPC = {0}'.format(spack_cc))
def install(self, spec, prefix):
with working_dir(self.build_directory):
mkdir(prefix.include)
install('sofa.h', prefix.include)
install('sofam.h', prefix.include)
mkdir(prefix.lib)
install('libsofa_c.a', prefix.lib)