7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
20 lines
583 B
Ruby
20 lines
583 B
Ruby
require 'formula'
|
|
|
|
class Maxima <Formula
|
|
url 'http://downloads.sourceforge.net/project/maxima/Maxima-source/5.21.1-source/maxima-5.21.1.tar.gz'
|
|
homepage 'http://maxima.sourceforge.net/'
|
|
md5 'e08ed533f3059cec52788ef35198bdcc'
|
|
|
|
depends_on 'gettext'
|
|
depends_on 'cmucl'
|
|
depends_on 'gnuplot'
|
|
depends_on 'rlwrap'
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-cmucl", "--enable-gettext"
|
|
system "make install"
|
|
end
|
|
end
|