Advertisement
Guest User

PKGBUILD

a guest
Aug 29th, 2010
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.74 KB | None | 0 0
  1. # Contributor: Jonathan Wiersma <archaur at jonw dot org>
  2. pkgname=eclipse-wtp
  3. pkgver=3.2.1
  4. _pkgdate=20100730021206
  5. pkgrel=1
  6. pkgdesc="Webtools framework for the Eclipse platform"
  7. url="http://www.eclipse.org/webtools/"
  8. license="Eclipse Public License"
  9. arch=('i686' 'x86_64')
  10. depends=( 'eclipse-emf' 'eclipse-gef' )
  11. optdepends=('eclipse-dtp')
  12. provides=('eclipse-wtp-wst')
  13. source=("http://eclipse.mirror.garr.it/mirrors/eclipse//webtools/downloads/drops/R$pkgver/R-$pkgver-$_pkgdate/wtp-R-$pkgver-$_pkgdate.zip")
  14. md5sums=('a7c316b82204bf8b57e2ad84ea8bdff8')
  15.  
  16. build() {
  17.     cd $srcdir || return 1
  18.     find eclipse -type f | while read file; do
  19.         install -Dm644 "$file" "$pkgdir/usr/share/eclipse/dropins/wtp/$file" || return 1
  20.     done || return 1
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement