diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-25 10:20:21 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-25 10:20:21 -0400 |
commit | f42be659677675e1d0de32f0b4b121fcf184baca (patch) | |
tree | e4f0d0496e9cd4ae0d019c594c9d6fa17fdd5dec /ds9 | |
parent | 7e99bb54098d675212296604a84a03a4c18af9ab (diff) | |
download | cbc-recipes-f42be659677675e1d0de32f0b4b121fcf184baca.tar.gz |
Initial commit
Diffstat (limited to 'ds9')
-rw-r--r-- | ds9/ds9.ini | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/ds9/ds9.ini b/ds9/ds9.ini new file mode 100644 index 0000000..449aa04 --- /dev/null +++ b/ds9/ds9.ini @@ -0,0 +1,45 @@ +[package] +name : ds9 +version : 7.3.2 + +[about] +home : http://ds9.si.edu/download/source/ +license : GPL,LGPL,BSD +summary : ${package:name} + +[source] +fn : ${package:name}.${package:version}.tar.gz +url : ${about:home}/${fn} + +[build] +number : 0 + +[requirements] +build : + gcc >=4.6 [osx] + # +run : + # + +[test] +imports : + +commands : + + +[cbc_build] +linux : + ln -s make.darwinmavericks make.include + sed -i -e '/^ZZ/ s/$$/ -arch x86_64/' \ + -e '/^AA/ s/$$/ -arch x86_64/' make.include + + sed -i -e '/CODESIGN =/c \ + CODESIGN = echo' make.include + + make LDFLAGS='-arch x86_64 -m64' + mkdir -p $$PREFIX/bin + cp -a bin/ds9* bin/x* $$PREFIX/bin +windows : + exit 1 + if errorlevel 1 exit 1 + |