Skip to content

Commit

Permalink
IntelliJ IDEA 10.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Alexandre Salim committed Sep 9, 2011
1 parent e876e0e commit 57bb7dc
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
27 changes: 27 additions & 0 deletions 2011/intellij-idea-launcher.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" ?>
<?xml-stylesheet type='text/xsl' href='interface.xsl'?>
<interface uri="http://mojo.informatik.uni-erlangen.de/interfaces/2011/intellij-idea-launcher.xml" xmlns="http://zero-install.sourceforge.net/2004/injector/interface">
<name>IntelliJ IDEA Community Edition (launcher)</name>
<summary>Launcher script for the IntelliJ IDEA Community Edition IDE</summary>
<description>
This feed provides a launcher script that makes sure IDEA can find a Java SDK,
by setting the appropriate environment variable if none are set.</description>
<homepage>http://www.jetbrains.com/idea/</homepage>
<category>Development</category>
<icon href="http://www.jetbrains.com/img/logos/intellijIdea.png" type="image/png"/>
<implementation id="sha1new=047b5bbcc4a4fcbb77a17f44d7e862ac42068d56" main="idea.sh" released="2011-09-09" stability="testing" version="0.1.0">
<archive extract="intellij-idea-launcher-0.1.0" href="http://mojo.informatik.uni-erlangen.de/interfaces/2011/intellij-idea-launcher-0.1.0.tar.bz2" size="554" type="application/x-bzip-compressed-tar"/>
<requires interface="http://mojo.informatik.uni-erlangen.de/interfaces/2011/intellij-idea.xml">
<environment insert="" mode="prepend" name="IDEA_HOME"/>
</requires>
</implementation>
</interface>
<!-- Base64 Signature
iQEcBAABAgAGBQJOafrhAAoJEFX/wTZE6YDhvE0IAK7wx99hdYeUdnZzJUUl4ieY9WcWDKYcYnbh
GH/gxS93biuEqm5lCbb/A3dEdXgEZAhkahJyAYI1F4O7N+u8F0gjE+C7ZmTSeOU4L60EzdbBl0yd
6T7QcSlmaUNiwzANGmQ+aYIxSZonzSFKPJ6Uav3Qgx1g98Td2XeyO5/hxQ6XipPwYx6kbLU2geV1
+xUFB36lRFjqWYbmzCjPPP6Fdd3YYFU1hEJPUFCKeG4wCBHQeb4l+pa4yDarXGGGxFQvxBGmNrDo
Ma/gbB/GKrTHhI5x4vMhhEMNxYriljU4+7v+C3Dg35KmcXaSpBtEoMudDYourVP+6ZANubxbxgDC
uAA=
-->
31 changes: 31 additions & 0 deletions 2011/intellij-idea.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" ?>
<?xml-stylesheet type='text/xsl' href='interface.xsl'?>
<interface uri="http://mojo.informatik.uni-erlangen.de/interfaces/2011/intellij-idea.xml" xmlns="http://zero-install.sourceforge.net/2004/injector/interface">
<name>IntelliJ IDEA Community Edition</name>
<summary>Java IDE</summary>
<description>
IntelliJ IDEA is a code-centric IDE focused on developer productivity. The
editor deeply understands your code and knows its way around the codebase, makes
great suggestions right when you need them, and is always ready to help you
shape your code.

IntelliJ IDEA Community Edition is the open source version of IntelliJ IDEA, a
premier IDE for Java, Groovy and other programming languages.</description>
<homepage>http://www.jetbrains.com/idea/</homepage>
<category>Development</category>
<icon href="http://www.jetbrains.com/img/logos/intellijIdea.png" type="image/png"/>
<group license="The Apache License 2.0">
<implementation id="sha1new=813020eb5bf4dba9222808ae1eee15114dd2bb2e" main="bin/idea.sh" released="2011-08-31" stability="stable" version="10.5.2">
<archive extract="idea-IC-107.587" href="http://download-ln.jetbrains.com/idea/ideaIC-10.5.2.tar.gz" size="84691012" type="application/x-compressed-tar"/>
</implementation>
</group>
</interface>
<!-- Base64 Signature
iQEcBAABAgAGBQJOafreAAoJEFX/wTZE6YDhvh8IAKemo2Jllshw50hxwjEodKH+rvT8I3RgICLl
RwE8e3D9+EIazHl+zFQCmYR7D0uOoYa/tYtGV409RhUzj0ZwybUwERmliTw4GuCI39jjtELXMPJB
3+7MIZlqdpdGwFIzu3E4CaGC4K5KDT17q2tk86tberiECUdZe3/nGwTQzrGMQG/uwC8BCqtOZdzS
N/ieJJPIgym2KnzsanKlSgN4HhuTl8Bk9HQPIin6hyiRESBrplILzhPqYX28wTb5g00/+ymUKJn1
b/eSaLt0CJ7iduSg1UiFA/qyzR1bDHqdSVaWGJ0raUHy/nDPFOZadmUN7aP1EBDGfzVKUSIiv2vH
1D4=
-->
20 changes: 20 additions & 0 deletions dist/intellij-idea-launcher-0.1.0/idea.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/sh
if [ -z "${IDEA_HOME}" ]; then
if [ -x `dirname $0`/bin/idea.sh ]; then
# launcher used with a manual IDEA installation
IDEA_HOME=`dirname $0`
else
# don't know where IDEA is
echo Error: IntelliJ IDEA installation not found.
echo Either set IDEA_HOME or place this script at
echo the root of your IDEA installation
exit 1
fi
fi

if [ -z "$IDEA_JDK" ] && [ -z "$JDK_HOME" ] && [ -z "$JAVA_HOME" ]; then
# no user-specified Java SDK; using the one that provides javac
export IDEA_JDK="$(cd "$(dirname $(readlink -f `which javac`))/../" && pwd)"
fi

$IDEA_HOME/bin/idea.sh $@

0 comments on commit 57bb7dc

Please sign in to comment.