summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e89329f7a1a21e02002e57b2c544af108c60d475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Maintainer: Elio Esteves Duarte <elio.esteves.duarte@gmail.com>
pkgname=tomate-gtk
pkgver=0.10.0
pkgrel=1
pkgdesc="A timer for the Pomodoro Technique"
arch=('any')
url="https://github.com/eliostvs/tomate-gtk"
license=('GPL')
depends=('desktop-file-utils'
         'gtk-update-icon-cache'
         'gtk3'
         'hicolor-icon-theme'
         'python'
         'python-tomate')
optdependes=('tomate-alarm-plugin: Plays alarm at session end'
             'tomate-indicator-plugin: Shows session progress in tray area'
             'tomate-notify-plugin: Plugin that shows screen notifications'
             'tomate-exec-plugin: Run commands when timer starts, stops or finishes'
             'tomate-statusicon-plugin: Plugin that shows the session progress in the notification area')
makedepends=('python-setuptools')
options=(!emptydirs)
source=("https://github.com/eliostvs/$pkgname/archive/$pkgver.tar.gz")
md5sums=('77ece53a9d87eba5db05dfd428691f61')
install=tomate-gtk.install

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

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