blob: 3e66008b3b664841523195909ad04370eaff23e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Snobol4 < Formula
homepage 'http://www.snobol4.org/'
url 'ftp://ftp.ultimate.com/snobol/snobol4-1.4.1.tar.gz'
sha1 'bfff40320b75fef507b463eacdf7c74a2e448f72'
def install
system './configure', "--prefix=#{prefix}", "--mandir=#{man}"
system 'make install'
end
end
|