Sitemap generator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
582 B

  1. # Maintainer: Pekka Helenius <fincer89 [at] hotmail [dot] com>
  2. pkgname=python-aiofile
  3. _pkgname=aiofile
  4. pkgver=0.5.3.r59.g6f0fea3
  5. pkgrel=1
  6. pkgdesc='Real asynchronous file operations with asyncio support'
  7. arch=('any')
  8. url='https://github.com/mosquito/aiofile'
  9. license=('Apache')
  10. depends=('python')
  11. makedepends=('git' 'python' 'cython')
  12. source=("$pkgname::git+https://github.com/mosquito/${_pkgname}.git")
  13. sha512sums=('SKIP')
  14. pkgver() {
  15. cd $pkgname
  16. git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
  17. }
  18. package() {
  19. cd $pkgname
  20. python setup.py install --root="$pkgdir/"
  21. }