homebrew-core/Formula/snobol4.rb
nibbles 2bits d0bc16132d snobol4 1.4.1
Upgrade snobol4 to version 1.4.1 and add `--mandir`.
Tested on Lion using llvm and clang from XCode-4.3.3.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-06-12 06:54:44 -07:00

12 lines
306 B
Ruby

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