shen: fix homepage and clean up

master
Adam Vandenberg 2012-02-07 21:16:32 -08:00
parent facbbdd0d6
commit c7414a33ba
1 changed files with 3 additions and 4 deletions

View File

@ -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