Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Dec 10th, 2010  |  syntax: Bash  |  size: 1.07 KB  |  hits: 123  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Maintainer: Hylix <hylixx@gmail.com>
  2. # Contributor: Angelo Theodorou <encelo@users.sourceforge.net>
  3.  
  4. pkgname=pida
  5. pkgver=0.6.1
  6. pkgrel=3
  7. pkgdesc="A Framework for integrated development"
  8. arch=('any')
  9. url="http://pida.co.uk"
  10. license=('custom')
  11. depends=('pygtk' 'dbus-python' 'python-simplejson' 'python2-gconf' 'vte' 'kiwi'  
  12. 'python2-pygtkhelpers-hg')
  13. optdepends=('gvim: to use as an embedded editor'
  14. 'emacs: to use it as an embedded editor'
  15. 'anyvc: for version control')
  16. source=(http://pypi.python.org/packages/source/p/pida/pida-${pkgver}.tar.gz
  17.         pida.desktop)
  18. install="pida.install"
  19. md5sums=('ca509c6140b826eacfe87ceb12034abc'
  20.          '0216466cf5f64238c90b5e07df71ce3a')
  21.  
  22. build() {
  23.   cd $startdir/src/pida-${pkgver}
  24.   python2 setup.py install --root=$startdir/pkg/ --prefix=/usr
  25.  
  26.   install -Dm644 COPYING    $startdir/pkg/usr/share/licenses/pida/LICENSE
  27.  
  28.   install -Dm644 pida/resources/pixmaps/pida-icon.png     $startdir/pkg/usr/share/pixmaps/pida.png
  29.   install -Dm644 $startdir/src/pida.desktop     $startdir/pkg/usr/share/applications/pida.desktop  
  30. }