Created
January 7, 2011 23:04
-
-
Save marc-guenther/770265 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
ECLIPSE_URL=http://mirror.cc.vt.edu/pub/eclipse/eclipse/downloads/drops/R-3.6.1-201009090800/eclipse-SDK-3.6.1-macosx-cocoa-x86_64.tar.gz | |
P2_URL=http://gist.github.com/raw/609891/p2 | |
WORKSPACE_MECHANIC_URL=http://wiki.objectstyle.org/confluence/download/attachments/8225785/WorkspaceMechanicExamples.zip | |
WORKSPACE_MECHANIC_FOLDER=~/.eclipse/mechanic | |
VERSION=`date +%s` | |
if [ "$#" != "1" ]; then | |
echo "usage: $0 [install folder]" | |
exit | |
fi | |
ECLIPSE_ARCHIVE_PATH=/tmp/eclipse_${VERSION}.tar.gz | |
P2_PATH=/tmp/p2_${VERSION} | |
WORKSPACE_MECHANIC_ARCHIVE_PATH=/tmp/WorkspaceMechanicExamples_${VERSION}.zip | |
ECLIPSE_INSTALL_FOLDER=$1 | |
# Grab Eclipse | |
if [ ! -e "${ECLIPSE_INSTALL_FOLDER}/Eclipse.app" ]; then | |
if [ -e "${ECLIPSE_INSTALL_FOLDER}" ]; then | |
ECLIPSE_INSTALL_FOLDER="${ECLIPSE_INSTALL_FOLDER}/eclipse_${VERSION}" | |
fi | |
echo "Downloading Eclipse ..." | |
curl ${ECLIPSE_URL} -o "${ECLIPSE_ARCHIVE_PATH}" | |
mkdir -p "${ECLIPSE_INSTALL_FOLDER}" | |
cd "${ECLIPSE_INSTALL_FOLDER}" | |
echo "Unarchiving Eclipse ..." | |
tar -x -v --strip-components 1 -f "${ECLIPSE_ARCHIVE_PATH}" | |
fi | |
# Grab the Workspace Mechanic zip | |
if [ ! -e "${WORKSPACE_MECHANIC_FOLDER}" ]; then | |
echo "Downloading the Workspace Mechanic scripts ..." | |
curl ${WORKSPACE_MECHANIC_URL} -o "${WORKSPACE_MECHANIC_ARCHIVE_PATH}" | |
WORKSPACE_MECHANIC_PARENT=`dirname "${WORKSPACE_MECHANIC_FOLDER}"` | |
mkdir -p "${WORKSPACE_MECHANIC_PARENT}" | |
cd "${WORKSPACE_MECHANIC_PARENT}" | |
unzip "${WORKSPACE_MECHANIC_ARCHIVE_PATH}" | |
rm "${WORKSPACE_MECHANIC_ARCHIVE_PATH}" | |
fi | |
# Grab the p2 script | |
echo "Downloading the Eclipse Plugin installer ..." | |
curl ${P2_URL} -o "${P2_PATH}" | |
chmod +x "${P2_PATH}" | |
# Install Plugins | |
echo "Downloading and Installing the recommended Eclipse plugins ..." | |
"${P2_PATH}" "${ECLIPSE_INSTALL_FOLDER}"\ | |
\ | |
http://download.eclipse.org/releases/helios,\ | |
http://dist.springsource.org/release/GRECLIPSE/e3.6,\ | |
http://webobjects.mdimension.com/jadclipse/3.6,\ | |
http://webobjects.mdimension.com/jprofiler6,\ | |
http://www.zeroturnaround.com/update-site,\ | |
http://m2eclipse.sonatype.org/sites/m2e,\ | |
http://webobjects.mdimension.com/hudson/job/WOLips36Current/lastSuccessfulBuild/artifact/site,\ | |
http://workspacemechanic.eclipselabs.org.codespot.com/hg.update/mechanic,\ | |
http://community.polarion.com/projects/subversive/download/eclipse/2.0/update-site\ | |
\ | |
org.eclipse.team.svn.resource.ignore.rules.jdt.feature.group,\ | |
org.eclipse.buckminster.subversive.feature.feature.group,\ | |
org.eclipse.mylyn_feature.feature.group,\ | |
net.sf.jadclipse.feature.group,\ | |
com.jprofiler.integrations.eclipse.feature.group,\ | |
org.zeroturnaround.eclipse.feature.feature.group,\ | |
org.zeroturnaround.eclipse.debug.feature.feature.group,\ | |
org.maven.ide.eclipse.feature.feature.group,\ | |
org.objectstyle.wolips.feature.feature.group,\ | |
org.objectstyle.wolips.goodies.feature.feature.group,\ | |
org.objectstyle.wolips.jprofiler.feature.feature.group,\ | |
org.objectstyle.wolips.jrebel.feature.feature.group,\ | |
com.google.eclipse.mechanic.feature.group,\ | |
org.polarion.eclipse.team.svn.connector.javahl16.feature.group,\ | |
org.polarion.eclipse.team.svn.connector.svnkit16.feature.group,\ | |
org.polarion.eclipse.team.svn.connector.feature.group | |
echo "Cleaning up ..." | |
rm "${P2_PATH}" | |
if [ -e "${ECLIPSE_ARCHIVE_PATH}" ]; then | |
rm "${ECLIPSE_ARCHIVE_PATH}" | |
fi | |
echo "You should be good to go. Eclipse is installed in '${ECLIPSE_INSTALL_FOLDER}'." | |
open "${ECLIPSE_INSTALL_FOLDER}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment