diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-03-28 13:23:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-03-28 13:23:37 -0400 |
commit | 189b072b6b888977db7f19fd0fb9a4c83da2d71c (patch) | |
tree | a33d9fa065652f198b7a6e23c50f41cb8a2e9ccc | |
parent | e4caf4a2acbb18875b1064246554e4105449b5a3 (diff) | |
download | astroconda-contrib-189b072b6b888977db7f19fd0fb9a4c83da2d71c.tar.gz |
Initial commit
-rw-r--r-- | wcstools/bld.bat | 1 | ||||
-rw-r--r-- | wcstools/build.sh | 11 | ||||
-rw-r--r-- | wcstools/meta.yaml | 16 |
3 files changed, 28 insertions, 0 deletions
diff --git a/wcstools/bld.bat b/wcstools/bld.bat new file mode 100644 index 0000000..379a4c9 --- /dev/null +++ b/wcstools/bld.bat @@ -0,0 +1 @@ +exit 1 diff --git a/wcstools/build.sh b/wcstools/build.sh new file mode 100644 index 0000000..fb751b2 --- /dev/null +++ b/wcstools/build.sh @@ -0,0 +1,11 @@ +make -j${CPU_COUNT} +mkdir -p $PREFIX/bin \ + $PREFIX/lib \ + $PREFIX/include \ + $PREFIX/share/doc/wcstools + +cp -a bin/* $PREFIX/bin +cp -a libwcs/libwcs.a $PREFIX/lib +cp -a libwcs/*.h $PREFIX/include +cp -a COPYING $PREFIX/share/doc/wcstools + diff --git a/wcstools/meta.yaml b/wcstools/meta.yaml new file mode 100644 index 0000000..9dbab8f --- /dev/null +++ b/wcstools/meta.yaml @@ -0,0 +1,16 @@ +about: + home: http://tdc-www.harvard.edu/wcstools + license: GPL + summary: 'For setting and using the world coordinate systems (WCS) in the headers of the most common astronomical image formats' +build: + number: '0' +package: + name: wcstools + version: '3.9.2' +requirements: + build: + run: +source: + fn: wcstools-3.9.2.tar.gz + url: + - http://tdc-www.harvard.edu/software/wcstools/wcstools-3.9.2.tar.gz |