diff options
author | D. Can Celasun | 2018-01-30 11:14:19 +0100 |
---|---|---|
committer | D. Can Celasun | 2018-01-30 11:14:19 +0100 |
commit | d596bb6bcf47cc7b110f1a6d0e618c8727ce5b26 (patch) | |
tree | 63fc87066266397c833123689d26682b84e51d05 | |
parent | 2feba4c2904d863ad90e0f11810fbc089039dd51 (diff) | |
download | aur-d596bb6bcf47cc7b110f1a6d0e618c8727ce5b26.tar.gz |
Workaround for missing executable bit on mvn binary
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 5 |
2 files changed, 6 insertions, 3 deletions
@@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Tue Jan 16 15:22:55 UTC 2018 +# Tue Jan 30 10:13:57 UTC 2018 pkgbase = intellij-idea-ultimate-edition pkgdesc = An intelligent IDE for Java, Groovy and other programming languages with advanced refactoring features intensely focused on developer productivity. pkgver = 2017.3.3 - pkgrel = 1 + pkgrel = 2 url = https://www.jetbrains.com/idea/ install = intellij-idea-ultimate-edition.install arch = any @@ -4,7 +4,7 @@ pkgbase=intellij-idea-ultimate-edition pkgname=(intellij-idea-ultimate-edition intellij-idea-ultimate-edition-jre) pkgver=2017.3.3 _buildver=173.4301.25 -pkgrel=1 +pkgrel=2 arch=('any') pkgdesc="An intelligent IDE for Java, Groovy and other programming languages with advanced refactoring features intensely focused on developer productivity." url="https://www.jetbrains.com/idea/" @@ -31,6 +31,9 @@ package_intellij-idea-ultimate-edition() { install -d "$pkgdir"/{opt/$pkgname,usr/bin} mv idea-IU-${_buildver}/* "$pkgdir"/opt/$pkgbase + # workaround for missing executable bit + chmod +x "$pkgdir"/opt/$pkgbase/plugins/maven/lib/maven3/bin/mvn + ln -s /opt/$pkgname/bin/idea.sh "$pkgdir"/usr/bin/$pkgname install -D -m644 "$srcdir"/jetbrains-idea.desktop "$pkgdir"/usr/share/applications/jetbrains-idea.desktop install -D -m644 "$pkgdir"/opt/$pkgbase/bin/idea.png "$pkgdir"/usr/share/pixmaps/"$pkgname".png |