summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3e7c317b670e2786a77146cf84287bd64705c180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Alcasa

pkgname='python3-pyscreenshot-git'
pkgver=89.a813a54
pkgrel=1
pkgdesc="Pyscreenshot tries to allow to take screenshots without installing 3rd party libraries"
url="https://github.com/ponty/pyscreenshot"
arch=('any')
license=('GPL3')
depends=('python3' 'python-pillow' 'pygtk')
source=('git+https://github.com/ponty/pyscreenshot.git')

package() {
  cd pyscreenshot
  python setup.py install --root="$pkgdir/"
}

pkgver() {
  cd pyscreenshot
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

md5sums=('SKIP')