blob: bd1ef349546c13f07573b8396e43f9b7d4a6e79c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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-b2/jython-installer-2.7-b2.jar'
version '2.7-b2'
sha1 '900c505b55a43abee2361a2a4ef81dab7acd252f'
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
|