diff options
| author | Adam Vandenberg | 2012-03-06 07:06:31 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-06 07:06:31 -0800 |
| commit | 03bee673764b0bd58c7cb1e2425e43293db7b311 (patch) | |
| tree | ccf6d490d64a1b530024a61ee8d840825259aa78 | |
| parent | bff0ee5132f81955877875b7163bf0a25fd6988a (diff) | |
| download | homebrew-03bee673764b0bd58c7cb1e2425e43293db7b311.tar.bz2 | |
Shen: fix checksum
| -rw-r--r-- | Library/Formula/shen.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/shen.rb b/Library/Formula/shen.rb index 84e9f28cb..ffe8fbfc8 100644 --- a/Library/Formula/shen.rb +++ b/Library/Formula/shen.rb @@ -3,7 +3,7 @@ require 'formula' class Shen < Formula homepage 'http://www.shenlanguage.org/' url 'http://www.shenlanguage.org/download/Shen3.1.zip' - md5 'af5cf93107ead37373e2e520bccd3b08' + md5 'ecc1ed39c499417b9408157982559319' if ARGV.include? "--sbcl" depends_on 'sbcl' @@ -16,8 +16,7 @@ class Shen < Formula end def install - case - when ARGV.include?("--sbcl") then + if ARGV.include?("--sbcl") then system "cp K\\ Lambda/* Platforms/SBCL" safe_system "cd Platforms/SBCL; sbcl --load install.lsp" system "mv Platforms/SBCL/Shen.exe shen" |
