diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2018-02-02 16:20:04 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2018-02-02 16:20:04 +0100 |
commit | 48bd5699349a445eb29023b74124d383da8e0547 (patch) | |
tree | a47e6afaa240fe0a88d5d5c56f7d84d99b6a8129 /pcr/eclim | |
parent | 1d251961555370f755bd08b6e129c2022a80b4a8 (diff) | |
download | abslibre-48bd5699349a445eb29023b74124d383da8e0547.tar.gz abslibre-48bd5699349a445eb29023b74124d383da8e0547.tar.bz2 abslibre-48bd5699349a445eb29023b74124d383da8e0547.zip |
pcr/eclim: updated to 2.7.1
Diffstat (limited to 'pcr/eclim')
-rw-r--r-- | pcr/eclim/PKGBUILD | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/pcr/eclim/PKGBUILD b/pcr/eclim/PKGBUILD index 4c4e7d10f..f04d5ee77 100644 --- a/pcr/eclim/PKGBUILD +++ b/pcr/eclim/PKGBUILD @@ -1,15 +1,19 @@ +# Maintainer (AUR): Jingbei Li <i@jingbei.li> +# Contributor (AUR): Andrea Fagiani <andfagiani_at_gmail_dot_com> # Maintainer: Aurélien DESBRIÈRES <aurelien@hackers.camp> -# Contributor: Andrea Fagiani <andfagiani_at_gmail_dot_com> + +# parabora changes and rationale: +# no changes. pkgname=eclim -pkgver=2.5.0 +pkgver=2.7.1 pkgrel=1 pkgdesc="Brings Eclipse functionality to Vim" url="http://eclim.org/" license=('GPL3') -arch=(i686 x86_64) -depends=('vim' 'eclipse') -makedepends=('apache-ant' 'python2-sphinx') +arch=(i686 x86_64 armv7h) +depends=('vim' 'eclipse' 'java-environment') +makedepends=('apache-ant' 'python2-sphinx' 'groovy') optdepends=('eclipse-pdt: Eclipse PHP Development Tools support' 'eclipse-cdt: Eclipse C/C++ Plugin support' 'eclipse-dltk-core: Eclipse Dynamic Languagues Toolkit support' @@ -17,7 +21,8 @@ optdepends=('eclipse-pdt: Eclipse PHP Development Tools support' 'eclipse-wtp: Eclipse Web Developer Tools support') conflicts=('eclim-git') install=$pkgname.install -source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_$pkgver.tar.gz") +source=("https://github.com/ervandew/eclim/releases/download/$pkgver/${pkgname}_$pkgver.tar.gz") +md5sums=('b7c283fff4813617eaf2c67c96072b9a') prepare() { cd $srcdir/${pkgname}_$pkgver @@ -45,9 +50,11 @@ build() { cd ../.. - ant -Declipse.home=/usr/lib/eclipse \ + ant -lib /usr/share/groovy/lib \ + -Declipse.home=/usr/lib/eclipse \ -Dvim.files=/usr/share/vim/vimfiles \ build + } package() { @@ -56,11 +63,13 @@ package() { mkdir -p $pkgdir/usr/lib/eclipse mkdir -p $pkgdir/usr/share/vim/vimfiles - ant -Declipse.home=/usr/lib/eclipse \ + ant -lib /usr/share/groovy/lib \ + -Declipse.home=/usr/lib/eclipse \ -Dvim.files=$pkgdir/usr/share/vim/vimfiles \ docs vimdocs - ant -Declipse.home=$pkgdir/usr/lib/eclipse \ + ant -lib /usr/share/groovy/lib \ + -Declipse.home=$pkgdir/usr/lib/eclipse \ -Dvim.files=$pkgdir/usr/share/vim/vimfiles \ deploy |