Skip to content

Instantly share code, notes, and snippets.

@homebysix
Last active November 13, 2015 01:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save homebysix/3d283000ebb3ea8dd10f to your computer and use it in GitHub Desktop.
Save homebysix/3d283000ebb3ea8dd10f to your computer and use it in GitHub Desktop.
EclipseIDE.download.recipe
<?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&amp;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>&lt;a href="download\.php\?file=(/\w+/\w+/\w+/\w+/eclipse-inst-mac64\.tar\.gz)" title="64 bit Download"&gt;64 bit&lt;/a&gt;</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&amp;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