2009-10-17 14:06:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Jython < Formula
|
2012-02-12 22:37:41 +00:00
|
|
|
homepage 'http://www.jython.org'
|
2012-05-19 12:08:21 +00:00
|
|
|
url "http://downloads.sourceforge.net/project/jython/jython/2.5.2/jython_installer-2.5.2.jar"
|
2011-03-03 21:08:39 +00:00
|
|
|
sha1 'd4534a691edf40aa1d51723dfe3e22db1e39b432'
|
2011-01-14 16:52:44 +00:00
|
|
|
|
2012-04-30 03:02:59 +00:00
|
|
|
devel do
|
2012-06-04 21:17:20 +00:00
|
|
|
url "http://downloads.sourceforge.net/project/jython/jython-dev/2.7.0a2/jython_installer-2.7a2.jar"
|
|
|
|
sha1 'b4a0bd80800221d9a6b5462120c327e27b307544'
|
2012-04-30 03:02:59 +00:00
|
|
|
end
|
|
|
|
|
2009-10-17 14:06:17 +00:00
|
|
|
def install
|
2012-04-30 03:02:59 +00:00
|
|
|
system "java", "-jar", "jython_installer-#{version}.jar", "-s", "-d", libexec
|
2012-05-19 12:08:21 +00:00
|
|
|
bin.install_symlink libexec/'bin/jython'
|
2009-10-17 14:06:17 +00:00
|
|
|
end
|
|
|
|
end
|