summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0a5915271933ede135c09ba92cfeca2ef7aab915 (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
# Maintainer: Giovanni Harting <539@idlegandalf.com>
# Contributor: Qontinuum <qontinuum.dev@protonmail.ch>
# Contributor: Julien Nicoulaud <julien DOT nicoulaud AT gmail DOT com>

pkgname=python-pystray
pkgver=0.19.5
pkgrel=3
arch=(any)
license=(GPL-3.0-only LGPL-3.0-only)
pkgdesc='Allows to create a system tray icon'
url='https://github.com/moses-palmer/pystray'
depends=(python-six python-pillow 'python-xlib>=0.17' libappindicator-gtk3 python-gobject gtk3 python gobject-introspection-runtime)
makedepends=(python-build python-installer python-wheel python-setuptools python-sphinx)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
b2sums=('34bea3d14cfde7ee7a7d2594da2386265fba34b36f4699b5877ea393dbf7e844fe441a1bda384bb6b3f279a544cba897e04509f7c47d69cb5168793665ae73d4')

build() {
  cd pystray-$pkgver
  python -m build --wheel --no-isolation
}

package_python-pystray() {
  cd pystray-$pkgver
  python -m installer --destdir="$pkgdir" dist/*.whl
}

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