summaryrefslogtreecommitdiff
path: root/etc/hstdp-snapshot/pkgs/002-hstcal.sh
blob: c09da81b0a8a5c19abf9774e7ea32cb7670c5530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash -e
name=hstcal
version=master
url="https://github.com/spacetelescope/${name}"

# Grab a version of WAF that isn't broken
curl -o waf https://waf.io/waf-2.0.12
chmod +x waf

git clone "${url}"
pushd "${name}" &>/dev/null
    git checkout "${version}"

    # Build / Install
    ../waf configure --prefix=${PREFIX} --release-with-symbols --with-cfitsio=${PREFIX}
    ../waf build
    ../waf install
popd &>/dev/null