diff options
Diffstat (limited to 'extra/eclipse')
-rw-r--r-- | extra/eclipse/PKGBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/extra/eclipse/PKGBUILD b/extra/eclipse/PKGBUILD index 4bef7ace9..0a17572cc 100644 --- a/extra/eclipse/PKGBUILD +++ b/extra/eclipse/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 196482 2013-10-14 09:30:29Z ioni $ +# $Id: PKGBUILD 198727 2013-11-02 10:00:23Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Paul Mattal <paul@archlinux.org> # Contributor: Andrew Wright <andreww@photism.org> @@ -7,7 +7,7 @@ pkgname=eclipse pkgver=4.3.1 -pkgrel=1 +pkgrel=2 _date=201309111000 pkgdesc="An IDE for Java and other languages" arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ url="http://eclipse.org" depends=('java-environment' 'gtk2' 'unzip' 'webkitgtk2' 'libxtst') install=${pkgname}.install makedepends=('zip') -license=("EPL/1.1") +license=("EPL/1.0") source=("ftp://ftp.osuosl.org/pub/eclipse/eclipse/downloads/drops4/R-$pkgver-${_date}/$pkgname-SDK-$pkgver-linux-gtk.tar.gz" 'eclipse.sh' 'eclipse.desktop' 'eclipse.svg') md5sums=('04880311281ff9de71a7d1def630b29e' @@ -27,7 +27,7 @@ md5sums=('04880311281ff9de71a7d1def630b29e' package() { # install eclipse - install -m755 -d "$pkgdir/usr/share" + install -m755 -d "$pkgdir/usr/share/licenses/eclipse/" mv eclipse "$pkgdir/usr/share/" # install misc @@ -39,4 +39,6 @@ package() { install -Dm644 "$srcdir"/eclipse.svg \ "$pkgdir"/usr/share/icons/hicolor/scalable/apps/eclipse.svg sed -i "s|#!/usr/bin/python|#!/usr/bin/python2|" "$pkgdir"/usr/share/eclipse/plugins/org.apache.ant_1.8.4.v201303080030/bin/runant.py + + mv $pkgdir/usr/share/eclipse/epl-v10.html "$pkgdir/usr/share/licenses/eclipse/epl-v10.html" } |