aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-07 21:16:32 -0800
committerAdam Vandenberg2012-02-07 21:16:32 -0800
commiteae07f25673353ac92e6e835280d6cd1c9baa85a (patch)
tree1bae6ab1dff39085d6eb0b43dfcde747bfe30f13 /Library
parentb4e1750e719c9fe4d6180633706aba2b22aa2d81 (diff)
downloadhomebrew-eae07f25673353ac92e6e835280d6cd1c9baa85a.tar.bz2
shen: fix homepage and clean up
Diffstat (limited to 'Library')
-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