Advertisement
Guest User

Untitled

a guest
May 11th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.88 KB | None | 0 0
  1. # Contributor: Jesus Jerez <jhuss@archlinux.org.ve>
  2. # Contributor: Ng Oon-Ee <ngoonee@gmail.com>
  3. # Maintainer: Arthur Zamarin <arthurzam@gmail.com>
  4.  
  5. pkgname=eclipse-linuxtools
  6. pkgver=3.2.0
  7. pkgrel=1
  8. pkgdesc="Eclipse Linux Tools Project"
  9. url="http://www.eclipse.org/linuxtools"
  10. arch=('any')
  11. license=('EPL')
  12. depends=('eclipse-cdt')
  13. optdepends=(
  14.     'eclipse-ptp: remote profiling'
  15.     'eclipse-rse: LTTng and remote profiling'
  16.     'eclipse-gef: Draw2d and Zest'
  17.     'eclipse-tcf: legacy LTTng'
  18.     'eclipse-antlr-runtime: Tracing/LTTng'
  19. )
  20. makedepends=('java-environment')
  21. source=("http://www.eclipse.org/downloads/download.php?r=1&file=/linuxtools/linuxtools-${pkgver}.zip")
  22. sha256sums=('332c1bba17e987066d831a76f035ccf68c5056a694c183c70fc62f8d5814407d')
  23.  
  24. package() {
  25.   d="$pkgdir/usr/share/eclipse/dropins/linuxtools/eclipse"
  26.   install -d "$d"
  27.   cp -a features "$d"
  28.   cp -a plugins "$d"
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement