homebrew-core/Formula/qfits.rb
Michael Williams 9e46f71abc New formula: qfits
QFits is a library written in C for accessing FITS image files.

Closes Homebrew/homebrew#7270.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-08-31 12:02:46 -07:00

16 lines
481 B
Ruby

require 'formula'
class Qfits < Formula
url 'ftp://ftp.eso.org/pub/qfits/qfits-6.2.0.tar.gz'
homepage 'http://www.eso.org/sci/software/eclipse/qfits/index.html'
md5 'f3920831eee308af04d75089291ce144'
def install
# qfits does not support 64bit build
ENV.m32
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end