diff options
author | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-20 20:49:46 -0500 |
---|---|---|
committer | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-23 20:18:47 -0500 |
commit | 12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch) | |
tree | 352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/jython | |
parent | a2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff) |
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/jython')
-rw-r--r-- | homebrew/jython/.beer | 17 | ||||
-rw-r--r-- | homebrew/jython/.make.sh-auto | 3 | ||||
-rw-r--r-- | homebrew/jython/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/jython/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/jython/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/jython/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/jython/download.sh | 1 |
7 files changed, 25 insertions, 0 deletions
diff --git a/homebrew/jython/.beer b/homebrew/jython/.beer new file mode 100644 index 000000000..761fe44a8 --- /dev/null +++ b/homebrew/jython/.beer @@ -0,0 +1,17 @@ +{ + "name": "Jython", + "description": "Python implementation written in Java (successor to JPython)", + "url": "https://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7.1/jython-installer-2.7.1.jar", + "mirror": null, + "homepage": "https://www.jython.org/", + "depends": [], + "resource": [], + "conflicts": [], + "patches": [], + "install": [ + "system \"java\", \"-jar\", cached_download, \"-s\", \"-d\", libexec", + "bin.install_symlink libexec/\"bin/jython\"" + ], + "version": "2.7.1", + "file": "jython.rb" +}
\ No newline at end of file diff --git a/homebrew/jython/.make.sh-auto b/homebrew/jython/.make.sh-auto new file mode 100644 index 000000000..747804ecf --- /dev/null +++ b/homebrew/jython/.make.sh-auto @@ -0,0 +1,3 @@ +pkg:setup +java -jar cached_download -s -d libexec +bin.install_symlink libexec/"bin/jython" diff --git a/homebrew/jython/_metadata/description b/homebrew/jython/_metadata/description new file mode 100644 index 000000000..5271dcc4d --- /dev/null +++ b/homebrew/jython/_metadata/description @@ -0,0 +1 @@ +Python implementation written in Java (successor to JPython) diff --git a/homebrew/jython/_metadata/homepage b/homebrew/jython/_metadata/homepage new file mode 100644 index 000000000..c9a7c0514 --- /dev/null +++ b/homebrew/jython/_metadata/homepage @@ -0,0 +1 @@ +https://www.jython.org/ diff --git a/homebrew/jython/_metadata/name b/homebrew/jython/_metadata/name new file mode 100644 index 000000000..f2224fd57 --- /dev/null +++ b/homebrew/jython/_metadata/name @@ -0,0 +1 @@ +Jython diff --git a/homebrew/jython/_metadata/version b/homebrew/jython/_metadata/version new file mode 100644 index 000000000..860487ca1 --- /dev/null +++ b/homebrew/jython/_metadata/version @@ -0,0 +1 @@ +2.7.1 diff --git a/homebrew/jython/download.sh b/homebrew/jython/download.sh new file mode 100755 index 000000000..933d5e631 --- /dev/null +++ b/homebrew/jython/download.sh @@ -0,0 +1 @@ +wget https://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7.1/jython-installer-2.7.1.jar
\ No newline at end of file |