Simple Apache/HTTPD log parser for administrative analysis
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
596 B

4 years ago
  1. # Maintainer: Pekka Helenius <fincer89 [at] hotmail [dot] com>
  2. pkgname=python-pydicti
  3. _pkgname=pydicti
  4. pkgver=127.fa414fd
  5. pkgrel=1
  6. pkgdesc='Case insensitive dictionary with user-defined underlying dictionary for Python'
  7. arch=('any')
  8. url='https://github.com/coldfix/pydicti'
  9. license=('GPLv2')
  10. depends=('python')
  11. makedepends=('git' 'python')
  12. source=("$pkgname::git+https://github.com/coldfix/${_pkgname}.git")
  13. sha256sums=('SKIP')
  14. pkgver() {
  15. cd $pkgname
  16. echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
  17. }
  18. package() {
  19. cd $pkgname
  20. python setup.py install --root="$pkgdir/"
  21. }