2009-10-17 14:06:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Jython <Formula
|
2010-08-10 20:39:56 +00:00
|
|
|
url "http://downloads.sourceforge.net/project/jython/jython/2.5.1/jython_installer-2.5.1.jar",
|
|
|
|
:using => :nounzip
|
2009-10-17 14:06:17 +00:00
|
|
|
md5 '2ee978eff4306b23753b3fe9d7af5b37'
|
2010-08-10 20:39:56 +00:00
|
|
|
homepage 'http://www.jython.org'
|
2010-10-02 13:14:38 +00:00
|
|
|
head "http://downloads.sourceforge.net/project/jython/jython-dev/2.5.2b2/jython_installer-2.5.2b2.jar",
|
2010-08-10 20:39:56 +00:00
|
|
|
:using => :nounzip
|
2009-10-17 14:06:17 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-10 20:39:56 +00:00
|
|
|
system "java", "-jar", Pathname.new(@url).basename, "-s", "-d", libexec
|
|
|
|
bin.mkpath
|
|
|
|
ln_s libexec+'bin/jython', bin
|
2009-10-17 14:06:17 +00:00
|
|
|
end
|
|
|
|
end
|