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

[PYPHAT] By SpepS

By: a guest on Oct 19th, 2010  |  syntax: None  |  size: 0.63 KB  |  hits: 41  |  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: farid abdelnour <farid at atelier-labs.org>
  2. # Contributor: SpepS <dreamspepser at yahoo dot it>
  3.  
  4. pkgname=pyphat
  5. pkgver=0.4.1
  6. pkgrel=2
  7. pkgdesc="Python bindings for phat"
  8. arch=('i686' 'x86_64')
  9. url="http://phat.berlios.de/"
  10. license=('GPL2')
  11. depends=('python2' 'phat' 'pygtk')
  12. options=('!libtool')
  13. source=("http://download.berlios.de/phat/$pkgname-$pkgver.tar.gz")
  14. md5sums=('8c1352564e5668cc1b33a36b2466d4aa')
  15.  
  16. build() {
  17.  
  18.   cd "$srcdir/$pkgname-$pkgver"
  19.  
  20.   export PYTHON="python2"
  21.  
  22.   ./configure --prefix=/usr
  23.   make
  24. }
  25.  
  26. package() {
  27.  
  28.   cd "$srcdir/$pkgname-$pkgver"
  29.  
  30.   make DESTDIR="$pkgdir/" install
  31. }