summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 380af57cd2b7956c7f1d2488e0e85dc47a1ba698 (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: PhrozenByte <cron-notify at daniel-rudolf dot de>

pkgname=cron-notify
pkgver=1.0.6
pkgrel=1
pkgdesc="FreeDesktop.org-compatible notification service to periodically ask for acknowledgement before executing a cronjob"
url='https://github.com/PhrozenByte/cron-notify'
license=('GPL-3.0-only')
arch=('any')
depends=('dbus' 'python' 'python-croniter' 'python-notify2' 'python-gobject' 'python-pyxdg')
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('1cc6cf681108384ac6ebbc8f093d376477d2ca7338e25dbef3df019de9573e0a')

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

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