homebrew-core/Formula/algol68g.rb

19 lines
385 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Algol68g < Formula
homepage 'http://www.xs4all.nl/~jmvdveer/algol.html'
2012-03-04 03:54:50 +00:00
url 'http://jmvdveer.home.xs4all.nl/algol68g-2.3.7.tar.gz'
md5 '8a1c2f169b7aaa9d9155b42b6b5a12bf'
2012-03-04 04:22:59 +00:00
depends_on 'gsl' => :optional
def install
2012-03-04 04:22:59 +00:00
system "./configure", "--prefix=#{prefix}"
system "make install"
end
2012-03-04 03:54:50 +00:00
def test
system "#{bin}/a68g", "--help"
end
end