mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
699 B
Bash
19 lines
699 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Corrado 'bardo' Primier <corrado.primier@mail.polimi.it>
|
|
# Contributor: Rubin Simons <rubin@xs4all.nl>
|
|
|
|
pkgname=eclipse-ve
|
|
pkgver=1.2.3_jem
|
|
pkgrel=3
|
|
pkgdesc="Visual Editor framework for the Eclipse platform"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.eclipse.org/vep/"
|
|
license=('EPL')
|
|
depends=('eclipse-emf' 'eclipse-gef' 'eclipse<3.3')
|
|
source=(http://download.eclipse.org/tools/ve/downloads/drops/R-${pkgver}-200701301117/VE-runtime-${pkgver}.zip)
|
|
md5sums=('3317d67dec47eb4534f06cafb1f8175c')
|
|
|
|
build() {
|
|
install -d ${startdir}/pkg/usr/share/eclipse/
|
|
cp -r ${startdir}/src/eclipse/{features,plugins} ${startdir}/pkg/usr/share/eclipse/
|
|
}
|