summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 107760122c6315bc3f4f7d682aa3316b1b171b82 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Maintainer: Elio Esteves Duarte <elio.esteves.duarte@gmail.com>
pkgname=tomate-gtk
pkgver=0.25.0
pkgrel=6
pkgdesc="A Pomodoro timer"
arch=("any")
url="https://github.com/eliostvs/tomate-gtk"
license=("GPL")
depends=("desktop-file-utils"
         "gnome-icon-theme"
         "gtk-update-icon-cache"
         "gtk3"
         "hicolor-icon-theme"
         "hicolor-icon-theme"
         "libnotify"
         "playerctl"
         "python"
         "python-blinker"
         "python-dbus"
         "python-gobject"
         "python-pyxdg"
         "python-venusian"
         "python-wiring"
         "python-wrapt"
         "python-yapsy"
         "gst-plugins-base"
         "gst-plugins-good"
         "gstreamer")
optdependes=("tomate-indicator-plugin: Displays the progress of the session in system tray"
             "tomate-statusnotifieritem-plugin: Displays the progress of the session in system tray"
             "tomate-statusicon-plugin: Displays the progress of the session in system tray")
makedepends=("python-setuptools")
options=(!emptydirs)
source=("https://github.com/eliostvs/$pkgname/archive/$pkgver.tar.gz")
md5sums=('8ade6ca500e3776fc226700b207fa785')
conflicts=("tomate-breakscreen-plugin" 
           "tomate-alarm-plugin" 
           "tomate-exec-plugin" 
           "tomate-notify-plugin")
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: