summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 40f60178f059ea147be3f3293c4e26637ad28f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Elio Esteves Duarte <elio.esteves.duarte@gmail.com>
pkgname=tomate-breakscreen-plugin
pkgver=0.6.2
pkgrel=1
pkgdesc="Tomate plugin that shows a full screen window which prevents users from using the computer during a break"
arch=('any')
url="https://github.com/eliostvs/tomate-breakscreen-plugin"
license=('GPL')
depends=('python'
         'tomate-gtk')
makedepends=('python-setuptools')
options=(!emptydirs)
source=("https://github.com/eliostvs/$pkgname/archive/$pkgver.tar.gz")
md5sums=('75c0eb6eec72f158270a45c99713aa7b')

package() {
  cd "$srcdir/$pkgname-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE"
}

# vim:set ts=2 sw=2 et: