summaryrefslogtreecommitdiff
path: root/etc/jwstdp-latest/pkgs/001-cfitsio.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-02-15 22:11:56 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-02-15 22:11:56 -0500
commitc8ad645d8827bdd9fedc19a8c67f22aa016f8290 (patch)
tree940bab200a80641ca0b6d748e8e3576970a8c290 /etc/jwstdp-latest/pkgs/001-cfitsio.sh
parent3190d616c3b61ba7f173dba1e46af701bbf2e34c (diff)
downloaddocker-pipeline-c8ad645d8827bdd9fedc19a8c67f22aa016f8290.tar.gz
Refactor build/publish
Diffstat (limited to 'etc/jwstdp-latest/pkgs/001-cfitsio.sh')
-rw-r--r--etc/jwstdp-latest/pkgs/001-cfitsio.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/etc/jwstdp-latest/pkgs/001-cfitsio.sh b/etc/jwstdp-latest/pkgs/001-cfitsio.sh
deleted file mode 100644
index 719b542..0000000
--- a/etc/jwstdp-latest/pkgs/001-cfitsio.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash -e
-
-name=cfitsio
-version=3440
-url=https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/${name}${version}.tar.gz
-
-sudo yum install -y libcurl-devel
-curl -LO "${url}"
-tar xf "$(basename ${url})"
-
-pushd "${name}" &>/dev/null
-./configure --prefix="${PREFIX}" --enable-reentrant
-make shared
-make install
-popd &>/dev/null