aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/algol68g.rb
blob: df54c908eee40b3581c224f71c263abdacfad9c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Algol68g < Formula
  homepage 'http://www.xs4all.nl/~jmvdveer/algol.html'
  url 'http://jmvdveer.home.xs4all.nl/algol68g-2.3.7.tar.gz'
  md5 '8a1c2f169b7aaa9d9155b42b6b5a12bf'

  depends_on 'gsl' => :optional

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end

  def test
    system "#{bin}/a68g", "--help"
  end
end