From c7414a33ba74ffa74f0325228856f2751f8d9065 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 7 Feb 2012 21:16:32 -0800 Subject: [PATCH] shen: fix homepage and clean up --- Formula/shen.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Formula/shen.rb b/Formula/shen.rb index 3cce87b8c63..f1a40b93e65 100644 --- a/Formula/shen.rb +++ b/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