2011-05-24 17:24:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Grace < Formula
|
|
|
|
homepage 'http://plasma-gate.weizmann.ac.il/Grace/'
|
2013-11-30 20:09:55 +00:00
|
|
|
url 'ftp://plasma-gate.weizmann.ac.il/pub/grace/src/grace5/grace-5.1.23.tar.gz'
|
|
|
|
sha1 '0bd9cd6e76c97210658098f3533b5cf6c037d0bd'
|
2011-05-24 17:24:38 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2011-05-24 17:24:38 +00:00
|
|
|
depends_on 'pdflib-lite'
|
|
|
|
depends_on 'jpeg'
|
|
|
|
depends_on 'fftw'
|
2012-02-04 18:54:46 +00:00
|
|
|
depends_on 'lesstif'
|
2011-05-24 17:24:38 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-12 03:56:37 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-grace-home=#{prefix}"
|
2012-02-04 18:54:46 +00:00
|
|
|
|
|
|
|
system "make install"
|
2011-05-24 17:24:38 +00:00
|
|
|
end
|
|
|
|
end
|