blob: 0507b222887ccba539c02992a75a2fceab2a3b0e (
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.6.tar.gz'
sha1 'a054de1a74b84adec43ea1db4cd8ac0798e0fd3e'
depends_on 'gsl' => :optional
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/a68g", "--help"
end
end
|