homebrew-core/Formula/snobol4.rb
Adam Vandenberg 58e309a8a7 Add formula for SNOBOL4.
SNOBOL4 (StriNg Oriented and symBOlic Language) is a language for text
processing, pattern matching, and much more, first designed and
implemented at Bell Telephone Laboratories, Inc. (BTL) in the 1970's.
2009-12-12 16:24:17 +00:00

12 lines
275 B
Ruby

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