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

Untitled

By: a guest on Nov 7th, 2010  |  syntax: Bash  |  size: 0.68 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. # Contributor: Florian Zeitz <florob@babelmonkeys.de>
  2. pkgname=partiwm
  3. pkgver=0.0.6
  4. pkgrel=1
  5. pkgdesc="parti a tabbing/tiling window manager and xpra screen for X"
  6. arch=('i686' 'x86_64')
  7. url='http://partiwm.org'
  8. license=('GPL2')
  9. depends=('python2' 'gtk2' 'pygtk' 'pyrex' 'libxtst' 'xorg-server-xvfb')
  10. makedepends=('setuptools')
  11. source=("http://partiwm.googlecode.com/files/parti-all-$pkgver.tar.gz")
  12. md5sums=('4d246842a4c9061baab3ed6b4de91ab1')
  13.  
  14. build() {
  15.   cd ${srcdir}/parti-all-$pkgver
  16.   python2 make_constants_pxi.py wimpiggy/lowlevel/constants.txt wimpiggy/lowlevel/constants.pxi
  17.   python2 setup.py build || return 1
  18.   python2 setup.py install --root=${pkgdir} || return 1
  19. }