2012-04-02 20:53:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mathgl < Formula
|
|
|
|
homepage 'http://mathgl.sourceforge.net/'
|
|
|
|
url 'http://downloads.sourceforge.net/mathgl/mathgl-1.11.2.tar.gz'
|
|
|
|
md5 'acd33e68911d9506f60d769dce23f95e'
|
|
|
|
|
|
|
|
depends_on 'gsl'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2012-04-02 20:53:28 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['LIBS'] = '-lz'
|
|
|
|
|
|
|
|
# Fixed upstream: this line can be removed when v2 is released
|
|
|
|
inreplace ["mgl/mgl_export.cpp", "mgl/mgl_data_png.cpp"] do |s|
|
|
|
|
s.gsub! /#include <png.h>/, "#include <zlib.h>\n#include <png.h>"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|