diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-03-28 13:23:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:20 -0400 |
commit | 7336d98b9b4e5f3c44890634e11247fe47bdc2de (patch) | |
tree | a33d9fa065652f198b7a6e23c50f41cb8a2e9ccc /wcstools/build.sh | |
parent | f46565fe6f3eefd6a8eb1cec7179164f2800b042 (diff) | |
download | astroconda-dev-7336d98b9b4e5f3c44890634e11247fe47bdc2de.tar.gz |
Initial commit
Diffstat (limited to 'wcstools/build.sh')
-rw-r--r-- | wcstools/build.sh | 11 |
1 files changed, 11 insertions, 0 deletions
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 + |