New Formula: Montage
A toolkit for assembling Flexible Image Transport System (FITS) images into custom mosaics. Closes Homebrew/homebrew#7480. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
This commit is contained in:
parent
5ce2d86046
commit
cfab11aac2
1 changed files with 18 additions and 0 deletions
18
Formula/montage.rb
Normal file
18
Formula/montage.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'formula'
|
||||
|
||||
class Montage < Formula
|
||||
url 'http://montage.ipac.caltech.edu/download/Montage_v3.3.tar.gz'
|
||||
homepage 'http://montage.ipac.caltech.edu'
|
||||
md5 '875a88b4a2396a0eb5d0006a656e9c4a'
|
||||
|
||||
def install
|
||||
system "make"
|
||||
bin.install Dir['bin/m*']
|
||||
end
|
||||
|
||||
def caveats; <<-EOS.undent
|
||||
Montage is under the Caltech/JPL non-exclusive, non-commercial software licence agreement
|
||||
available at http://montage.ipac.caltech.edu/docs/download.html
|
||||
EOS
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue