2009-11-18 06:24:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Snobol4 < Formula
|
2009-11-18 06:24:18 +00:00
|
|
|
homepage 'http://www.snobol4.org/'
|
2012-06-12 06:18:18 +00:00
|
|
|
url 'ftp://ftp.ultimate.com/snobol/snobol4-1.4.1.tar.gz'
|
|
|
|
sha1 'bfff40320b75fef507b463eacdf7c74a2e448f72'
|
2009-11-18 06:24:18 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-12 06:18:18 +00:00
|
|
|
system './configure', "--prefix=#{prefix}", "--mandir=#{man}"
|
|
|
|
system 'make install'
|
2009-11-18 06:24:18 +00:00
|
|
|
end
|
|
|
|
end
|