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:
Rui Pereira 2011-08-12 12:17:19 +02:00 committed by Charlie Sharpsteen
parent 5ce2d86046
commit cfab11aac2

18
Formula/montage.rb Normal file
View 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