1. # Contributor: Ali Gündüz <gndz.ali@gmail.com>
  2. # Modified PKGBUILD to use python2, since the python package
  3. # points to python 3.1 now. Also, changed arch to any.
  4.  
  5. pkgname=tnote
  6. pkgver=0.2.1
  7. pkgrel=2
  8. pkgdesc="a small note taking program for the terminal"
  9. arch=(any)
  10. url="http://sourceforge.net/projects/tnote/"
  11. license=('GPLv3+')
  12. depends=('python2')
  13. source=('http://downloads.sourceforge.net/sourceforge/tnote/tnote-0.2.1.tar.gz')
  14. md5sums=('17b43996a7889c6f84cd2072c485c1a4')
  15.  
  16. build() {
  17. tar -xzf tnote-0.2.1.tar.gz
  18. cd ${srcdir}/tnote-0.2.1
  19.  
  20. sudo python2 setup.py install || return 1
  21.  
  22. }