58e309a8a7
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.
12 lines
275 B
Ruby
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
|