blob: de39693175f6926f596719630371b637bdb92e60 (
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
|
# Maintainer: Richard Garai <garric at okki dot hu>
pkgname=okki-status
pkgver=3.2.1
pkgrel=4
pkgdesc="Status bar for the Sway window manager"
arch=('x86_64')
url="https://github.com/gar-r/$pkgname"
license=('GPL3')
depends=('go>=1.21.0' 'dbus' 'bash')
checkdepends=()
optdepends=('upower: battery module'
'brillo: brightness module'
'wireplumber: volume module')
source=("$pkgname-v$pkgver.tar.gz::https://github.com/gar-r/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
md5sums=('cabd499ac9f98b36505665fc52ca26c8')
build() {
cd "$srcdir/$pkgname-$pkgver"
make build
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|