Skip to content

Instantly share code, notes, and snippets.

@wryfi
Created January 17, 2015 05:24
Show Gist options
  • Save wryfi/9bba9be892f055522447 to your computer and use it in GitHub Desktop.
Save wryfi/9bba9be892f055522447 to your computer and use it in GitHub Desktop.
PKGBUILD for eclipse-pydev-3.9.0
# Maintainer: Arthur Zamarin <arthurzam@gmail.com>
pkgname=eclipse-pydev
pkgver=3.9.0
pkgrel=1
pkgdesc="Python IDE for Eclipse"
url="http://pydev.org/"
arch=('any')
license=('EPL')
depends=('java-environment>=7' 'eclipse>=3.8')
makedepends=('unzip')
conflicts=('eclipse-aptana')
optdepends=('eclipse-pydev-mylyn: Mylyn support for Pydev in Eclipse')
source=("PyDev_${pkgver}.zip::http://downloads.sourceforge.net/project/pydev/pydev/PyDev%20${pkgver}/PyDev%20${pkgver}.zip")
md5sums=('160700fd2217d1a43a693da465cb17f7')
package () {
_dest="${pkgdir}/usr/share/eclipse/dropins/pydev/eclipse"
cd "$srcdir"
mkdir -p "${_dest}"
cp -r {features,plugins} "$_dest/"
find "$pkgdir/usr/share/eclipse" -type d -exec chmod 755 {} \;
find "$pkgdir/usr/share/eclipse" -type f -exec chmod 644 {} \;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment