mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
28 lines
844 B
Bash
28 lines
844 B
Bash
|
# $Id: PKGBUILD 1825 2009-09-04 20:43:29Z ibiru $
|
||
|
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
||
|
|
||
|
pkgname=eclipse-pydev
|
||
|
pkgver=1.5.0
|
||
|
_pkgver=1251989166
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
pkgdesc="Plugin for using Eclipse as a Python IDE"
|
||
|
license=('EPC')
|
||
|
url="http://pydev.sf.net"
|
||
|
depends=('eclipse' 'python')
|
||
|
makedepends=('unzip')
|
||
|
source=("http://downloads.sourceforge.net/sourceforge/pydev/org.python.pydev.feature-$pkgver.${_pkgver}.zip")
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}
|
||
|
for feature in $( find features -type f ); do
|
||
|
install -Dm644 ${feature} ${pkgdir}/usr/share/eclipse/dropins/${pkgname/eclipse-}/eclipse/${feature}
|
||
|
done
|
||
|
|
||
|
for plugin in $( find plugins -type f ); do
|
||
|
install -Dm644 "${plugin}" ${pkgdir}/usr/share/eclipse/dropins/${pkgname/eclipse-}/${plugin}
|
||
|
done
|
||
|
}
|
||
|
|
||
|
md5sums=('3ae8e2829ec297dde444d4478a299335')
|