Advertisement
axil

PKGBUILD - spark

Jun 18th, 2011
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.69 KB | None | 0 0
  1. #Maintainer: Axilleas P <markelos archlinux gr>
  2. #Contributor: helios
  3.  
  4. pkgname=spark
  5. pkgver=2.6.0
  6. pkgrel=1
  7. pkgdesc="Cross-platform real-time collaboration client optimized for business and organizations."
  8. arch=('i686' 'x86_64')
  9. url="http://www.igniterealtime.org/projects/spark/"
  10. license=('LGPL')
  11. depends=('openjdk6' 'apache-ant')
  12. options=('!strip')
  13. source=(http://www.igniterealtime.org/downloadServlet?filename=${pkgname}/${pkgname}_${pkgver//./_}.tar.gz)
  14. md5sums=('d2c7b908c6e4c941183a1126229f1601')
  15.  
  16. package() {
  17.   install -d -m755 "${pkgdir}"/opt/spark
  18.   cp -R Spark/* "${pkgdir}"/opt/spark/
  19.  
  20.   install -d -m755 "${pkgdir}"/usr/bin
  21.   ln -sf /opt/spark/Spark "${pkgdir}"/usr/bin/spark
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement