aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/shen.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/shen.rb b/Library/Formula/shen.rb
index 3cce87b8c..f1a40b93e 100644
--- a/Library/Formula/shen.rb
+++ b/Library/Formula/shen.rb
@@ -1,11 +1,10 @@
require 'formula'
class Shen < Formula
+ homepage 'http://www.shenlanguage.org/'
url 'http://www.shenlanguage.org/download/Shen3.0.zip'
- homepage 'http://www.lambdassociates.org/'
md5 'ea14b335772ede6a50c5e03d86dbd9c6'
- case
- when ARGV.include?("--sbcl") then
+ if ARGV.include? "--sbcl"
depends_on 'sbcl'
else
depends_on 'clisp'
@@ -28,6 +27,6 @@ class Shen < Formula
prefix.install ['Platforms/CLisp/Shen.mem']
end
system "chmod 755 shen"
- bin.install ['shen']
+ bin.install 'shen'
end
end