aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2009-11-17 22:24:18 -0800
committerMax Howell2009-12-12 16:24:17 +0000
commit9f29534362df16797c3b24601fb202e5485f3aea (patch)
tree0bc6cb20032b9af4a75dd2b5d8dd28242989a316 /Library/Formula
parent77531dd476eecca126d714806f428dbdfdc7035e (diff)
downloadhomebrew-9f29534362df16797c3b24601fb202e5485f3aea.tar.bz2
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/snobol4.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/snobol4.rb b/Library/Formula/snobol4.rb
new file mode 100644
index 000000000..a1c02df70
--- /dev/null
+++ b/Library/Formula/snobol4.rb
@@ -0,0 +1,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