blob: 0457e47ccd38a26ba0209c37f0d60833839b3eca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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'
sha1 '9e05023316ebc307b8191068dc07d6fd449ac14d'
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
|