blob: c9da0554ec03b1c76cd576e839e0ebd1b5a0664f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Maintainer: bitSheriff <root@bitsheriff.dev>
pkgname=dunst-timer
pkgver=1.00.04
pkgrel=1
pkgdesc="A Python script for setting timers with progress bar notifications in Dunst"
arch=('any')
url="https://github.com/bitSheriff/dunst-timer"
license=('MIT')
depends=('python' 'dunst')
source=("https://github.com/bitSheriff/dunst-timer/archive/v$pkgver.tar.gz")
sha256sums=('99ab4b4b520d6fceb95a4a9445131e8bdb08ce8e56dd7c9be587f13d9fdb7ab4')
package() {
install -Dm755 "$srcdir/$pkgname-$pkgver/dunst-timer.py" "$pkgdir/usr/bin/dunst-timer"
}
|