diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 23:00:12 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 23:00:12 -0400 |
commit | 0f7fc864d98d3e8a852d3a6a835ae3331fde1bad (patch) | |
tree | 24b4ac4b7a476b0bb1607476531c5ba1a5f63a7e /hstcal | |
parent | 39c272221a8baf3b3f2768d9de4f61abea57cf1f (diff) | |
download | spm_packages-0f7fc864d98d3e8a852d3a6a835ae3331fde1bad.tar.gz |
Current state
Diffstat (limited to 'hstcal')
-rw-r--r-- | hstcal/build.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hstcal/build.sh b/hstcal/build.sh index a93a216..0e9f496 100644 --- a/hstcal/build.sh +++ b/hstcal/build.sh @@ -6,22 +6,27 @@ sources=() build_depends=( "git" "python" + "gcc==8.4.0" ) depends=( "cfitsio" ) +_waf_version=2.0.18 function prepare() { + curl -L https://waf.io/waf-${_waf_version} > waf + chmod +x waf + git clone https://github.com/spacetelescope/${name} cd ${name} git checkout ${version} - curl -L https://waf.io/waf-2.0.18 >../waf - chmod +x ../waf } function build() { ../waf configure --prefix=${_prefix} +echo debug +bash } function package() { |