aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/snobol4.rb
diff options
context:
space:
mode:
authornibbles 2bits2012-06-11 23:18:18 -0700
committerAdam Vandenberg2012-06-12 06:54:44 -0700
commit7e668e7ede4eefa430341fe5324932d42a9ff421 (patch)
tree916bc350e913417bfc5a66f32b5732d4afa27019 /Library/Formula/snobol4.rb
parent79772aa31d4af4247c08c647f76004b9f94d8d59 (diff)
downloadhomebrew-7e668e7ede4eefa430341fe5324932d42a9ff421.tar.bz2
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>
Diffstat (limited to 'Library/Formula/snobol4.rb')
-rw-r--r--Library/Formula/snobol4.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/snobol4.rb b/Library/Formula/snobol4.rb
index 8f67cc554..3e66008b3 100644
--- a/Library/Formula/snobol4.rb
+++ b/Library/Formula/snobol4.rb
@@ -1,12 +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'
+ url 'ftp://ftp.ultimate.com/snobol/snobol4-1.4.1.tar.gz'
+ sha1 'bfff40320b75fef507b463eacdf7c74a2e448f72'
def install
- system "./configure", "--prefix=#{prefix}"
- system "make install"
+ system './configure', "--prefix=#{prefix}", "--mandir=#{man}"
+ system 'make install'
end
end