Advertisement
zeppelinlg

eclipse-emf 2.9.1 - PKGBUILD

Dec 13th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.07 KB | None | 0 0
  1. # Maintainer: Stéphane Marguet (Stemp) <smarguet@gmail.com>
  2. # Contributor: scippio <scippio [at] berounet.cz>
  3. # Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
  4. # Contributor: Corrado Primier <bardo@aur.archlinux.org>
  5. # Contributor: Rubin Simons <rubin@xs4all.nl>
  6.  
  7. pkgname=eclipse-emf
  8. pkgver=2.9.1
  9. _reldate=201309020605
  10. pkgrel=1
  11. pkgdesc="EMF and XSD frameworks for the Eclipse platform"
  12. arch=('any')
  13. url="http://www.eclipse.org/modeling/emf/"
  14. license=('EPL')
  15. depends=('eclipse>=3.5')
  16. changelog=ChangeLog
  17. _mirror="http://www.eclipse.org/downloads/download.php?r=1&file="
  18. source=("$_mirror/modeling/emf/emf/downloads/drops/${pkgver}/R${_reldate}/emf-runtime-${pkgver}.zip"
  19.     "$_mirror/modeling/emf/emf/downloads/drops/${pkgver}/R${_reldate}/xsd-runtime-${pkgver}.zip")
  20. md5sums=('806dc1b76296711535fcdbeb85ce6075'
  21.          'b6be5c0608d23256c082392ceab535e8')
  22.  
  23. package() {
  24.     _dest="${pkgdir}"/usr/share/eclipse/dropins/${pkgname/eclipse-}/eclipse
  25.     cd "${srcdir}/eclipse"
  26.     find . -type f | while read f ; do
  27.         install -Dm644 ${f} "${_dest}/${f}"
  28.     done
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement