Last active
November 13, 2015 01:08
-
-
Save homebysix/3d283000ebb3ea8dd10f to your computer and use it in GitHub Desktop.
EclipseIDE.download.recipe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Description</key> | |
<string>Downloads the current release version of Eclipse.</string> | |
<key>Identifier</key> | |
<string>com.github.sheagcraig.download.EclipseIDE</string> | |
<key>Input</key> | |
<dict> | |
<key>NAME</key> | |
<string>EclipseIDE</string> | |
<key>url</key> | |
<string>http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-standard-luna-R-macosx-cocoa-x86_64.tar.gz&r=1</string> | |
</dict> | |
<key>MinimumVersion</key> | |
<string>0.2.0</string> | |
<key>Process</key> | |
<array> | |
<dict> | |
<key>Processor</key> | |
<string>URLTextSearcher</string> | |
<key>Arguments</key> | |
<dict> | |
<key>url</key> | |
<string>https://eclipse.org/downloads/</string> | |
<key>re_pattern</key> | |
<string><a href="download\.php\?file=(/\w+/\w+/\w+/\w+/eclipse-inst-mac64\.tar\.gz)" title="64 bit Download">64 bit</a></string> | |
<key>result_output_var_name</key> | |
<string>match</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>Processor</key> | |
<string>URLDownloader</string> | |
<key>Arguments</key> | |
<dict> | |
<key>url</key> | |
<string>https://eclipse.org/downloads/download.php?r=1&file=%match%</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>Processor</key> | |
<string>EndOfCheckPhase</string> | |
</dict> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment