diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/snobol4.rb | 12 |
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 |
