blob: a1c02df70435452360592e4f960d510abb992ef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Snobol4 <Formula
url 'ftp://ftp.ultimate.com/snobol/snobol4-1.2.tar.gz'
homepage 'http://www.snobol4.org/'
md5 '5265d1e21b8d1963e0c7fe830c3d5172'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|