jython: use install_symlink

This commit is contained in:
Adam Vandenberg 2012-02-12 14:37:41 -08:00
parent ef5688abab
commit 48bf49a84f

View file

@ -1,14 +1,13 @@
require 'formula'
class Jython < Formula
homepage 'http://www.jython.org'
url "http://downloads.sourceforge.net/project/jython/jython/2.5.2/jython_installer-2.5.2.jar",
:using => :nounzip
homepage 'http://www.jython.org'
sha1 'd4534a691edf40aa1d51723dfe3e22db1e39b432'
def install
system "java", "-jar", Pathname.new(@url).basename, "-s", "-d", libexec
bin.mkpath
ln_s libexec+'bin/jython', bin
system "java", "-jar", "jython_installer-2.5.2.jar", "-s", "-d", libexec
bin.install_symlink libexec+'bin/jython'
end
end