aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichael Williams2011-08-29 18:40:46 +0200
committerCharlie Sharpsteen2011-08-31 12:02:46 -0700
commit162bf7e3bacc812982a7a9c754e310ef6a7ef07b (patch)
tree6892d23f45025b1a2c10db813bbeff99fd110fb9 /Library/Formula
parentc5fad4bc5f2e668deb182c2309f428d6bdead13a (diff)
downloadhomebrew-162bf7e3bacc812982a7a9c754e310ef6a7ef07b.tar.bz2
New formula: qfits
QFits is a library written in C for accessing FITS image files. Closes #7270. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/qfits.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/qfits.rb b/Library/Formula/qfits.rb
new file mode 100644
index 000000000..327d6efdf
--- /dev/null
+++ b/Library/Formula/qfits.rb
@@ -0,0 +1,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'
+ 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