homebrew-core/Formula/jython.rb
Daniel Slapman a84f9e18d0 jython 2.7-b3
Closes Homebrew/homebrew#31959.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-08-29 11:16:35 -05:00

19 lines
662 B
Ruby

require 'formula'
class Jython < Formula
homepage 'http://www.jython.org'
url 'http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.5.3/jython-installer-2.5.3.jar'
sha1 '6b6ac4354733b6d68d51acf2f3d5c823a10a4ce4'
devel do
url 'http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7-b3/jython-installer-2.7-b3.jar'
version '2.7-b3'
sha1 '02fb63769e2620eae3e49f2800e85b3243beca14'
end
def install
system "java", "-jar", cached_download, "-s", "-d", libexec
inreplace libexec/'bin/jython', 'PRG=$0', "PRG=#{libexec}/bin/jython"
bin.install_symlink libexec/'bin/jython'
end
end