From 3c840f8d9f0fa6c490819161a234b35d6d5783e2 Mon Sep 17 00:00:00 2001 From: bill-auger Date: Mon, 11 Jun 2018 05:00:50 -0400 Subject: add intellij-idea-community-edition - fails to build --- .../intellij-idea-community-edition/PKGBUILD | 59 ++++++++++++++++++++++ .../intellij-idea-community-edition/idea.desktop | 11 ++++ .../intellij-idea-community-edition/idea.install | 10 ++++ .../intellij-idea-community-edition/idea.sh | 5 ++ 4 files changed, 85 insertions(+) create mode 100644 libre-testing/intellij-idea-community-edition/PKGBUILD create mode 100644 libre-testing/intellij-idea-community-edition/idea.desktop create mode 100644 libre-testing/intellij-idea-community-edition/idea.install create mode 100644 libre-testing/intellij-idea-community-edition/idea.sh (limited to 'libre-testing') diff --git a/libre-testing/intellij-idea-community-edition/PKGBUILD b/libre-testing/intellij-idea-community-edition/PKGBUILD new file mode 100644 index 000000000..9adde9489 --- /dev/null +++ b/libre-testing/intellij-idea-community-edition/PKGBUILD @@ -0,0 +1,59 @@ +# Maintainer: not me :) +# Contributor: Lukas Jirkovsky + + +pkgname=intellij-idea-community-edition +pkgver=2018.1.4 +_pkgver=181.5087.20 +pkgrel=1.parabola1 +epoch=2 +pkgdesc="IDE for Java, Groovy and other programming languages with advanced refactoring features" +arch=('any') +url="https://www.jetbrains.com/idea/" +license=('Apache') +backup=('usr/share/intellijidea-ce/bin/idea.vmoptions' + 'usr/share/intellijidea-ce/bin/idea64.vmoptions') +depends=('java-environment=8' 'giflib' 'libxtst' 'libxft' 'ttf-font' + 'coreutils' 'grep' 'which') +conflicts=('intellij-idea-libs') +replaces=('intellij-idea-libs') +install=idea.install +source=(https://github.com/JetBrains/intellij-community/archive/idea/${_pkgver%.*}.tar.gz + idea.desktop + idea.sh) +sha256sums=('fa31113e3676e8d036e35e287f9c55f3b1c50413898a8e61f84e605c3808e5cc' + 'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6' + '0e5d6a47b5ae464e9f562110ccc798f55055943e425e0621c0275f72615fdb1d') + + +build() +{ + cd "intellij-community-idea-${_pkgver%.*}" + + ant +} + + +package() +{ +# TODO: +# as is, this fails to build so this function has not been reached yet +# so this function may need some tweaking +# it is from the arch package that did not have a build() function +# but merely packaged downloaded binaries + + install -d -m755 "$pkgdir/"usr/share + cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce + + # make sure that all files are owned by root + chown -R root:root "$pkgdir/usr/share" + + install -d -m755 "$pkgdir"/usr/bin + install -D -m755 "$srcdir"/idea.sh "$pkgdir"/usr/bin/idea.sh + install -D -m644 "$srcdir"/idea.desktop "$pkgdir"/usr/share/applications/idea.desktop + install -D -m644 "$pkgdir"/usr/share/intellijidea-ce/bin/idea.png \ + "$pkgdir"/usr/share/pixmaps/idea.png + + # workaround FS#40934 + sed -i 's|lcd|on|' "$pkgdir"/usr/share/intellijidea-ce/bin/*.vmoptions +} diff --git a/libre-testing/intellij-idea-community-edition/idea.desktop b/libre-testing/intellij-idea-community-edition/idea.desktop new file mode 100644 index 000000000..b06d2965d --- /dev/null +++ b/libre-testing/intellij-idea-community-edition/idea.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=IntelliJ IDEA Community Edition +Comment=Develop with pleasure! +Exec=idea.sh %f +Icon=idea +Terminal=false +StartupNotify=true +StartupWMClass=jetbrains-idea-ce +Categories=Development;IDE;Java; diff --git a/libre-testing/intellij-idea-community-edition/idea.install b/libre-testing/intellij-idea-community-edition/idea.install new file mode 100644 index 000000000..6828e3f6f --- /dev/null +++ b/libre-testing/intellij-idea-community-edition/idea.install @@ -0,0 +1,10 @@ +post_install() { + echo "WARNING:" + echo " Running IntelliJ IDEA with java other than java 8" + echo " may cause various problems, such as Graddle import not working" +} + +post_upgrade() { + post_install +} + diff --git a/libre-testing/intellij-idea-community-edition/idea.sh b/libre-testing/intellij-idea-community-edition/idea.sh new file mode 100644 index 000000000..a8de16950 --- /dev/null +++ b/libre-testing/intellij-idea-community-edition/idea.sh @@ -0,0 +1,5 @@ +#!/bin/sh +if [ -z "$IDEA_JDK" ] ; then + IDEA_JDK="/usr/lib/jvm/java-8-openjdk/" +fi +exec env IDEA_JDK=$IDEA_JDK /usr/share/intellijidea-ce/bin/idea.sh $@ -- cgit v1.2.3