Advertisement
Guest User

PKGBUILD python-easygui 0.95

a guest
Jul 13th, 2010
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # Maintainer: James Pearson <james.m.pearson+arch@gmail.com>
  2.  
  3. pkgname=python-easygui
  4. pkgver=0.95
  5. pkgrel=2
  6. pkgdesc="A module for very simple, very easy GUI programming in Python"
  7. url="http://easygui.sourceforge.net"
  8. license=('CCPL')
  9. arch=('any')
  10. depends=('python' 'tk')
  11. makedepends=('setuptools')
  12. source=(http://easygui.sourceforge.net/download/current_version/easygui_v$pkgver.tar.gz)
  13. md5sums=('45aac917f91d1378b4e74027dbf21b75')
  14.  
  15. build() {
  16. install -d ${pkgdir}$(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
  17. install -m644 easygui.py ${pkgdir}$(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
  18. install -Dm644 easygui.html $pkgdir/usr/share/doc/$pkgname/easygui.html
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement