blob: ed5c1d3f7e4163e27a4d6e09b60a8e460188a56e (
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
|
# Maintainer: system64 <system64fumo@protonmail.com>
pkgname=sysauth
pkgver=2025.08.03
pkgrel=1
pkgdesc="Simple authentication popup"
arch=('aarch64' 'x86_64')
url="https://github.com/System64fumo/sysauth"
license=('WTFPL')
groups=('sysshell')
depends=('gtkmm-4.0' 'gtk4-layer-shell' 'polkit')
source=("git+https://github.com/System64fumo/sysauth")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname}"
git show -s --format=%cd --date=format:%Y.%m.%d $(git rev-parse HEAD)
}
build() {
cd "${pkgname}"
make
}
package() {
cd "${pkgname}"
make PREFIX=/usr DESTDIR="${pkgdir}" install
}
|