blob: 376daec820f68327bde1a25bad0cc272f8ce524b (
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
29
30
31
32
33
34
35
36
|
# Maintainer: Antoine POPINEAU <antoine at popineau dot eu>
pkgname=greetd-tuigreet-bin
pkgver=0.9.1
pkgrel=0
pkgdesc='A console UI greeter for greetd'
url='https://github.com/apognu/tuigreet'
license=(GPL3)
conflicts=(greetd-tuigreet greetd-tuigreet-git)
arch=(x86_64)
makedepends=(scdoc)
source=("https://github.com/apognu/tuigreet/releases/download/${pkgver}/tuigreet-${pkgver}-${CARCH}"
"https://raw.githubusercontent.com/apognu/tuigreet/${pkgver}/LICENSE"
"https://raw.githubusercontent.com/apognu/tuigreet/${pkgver}/contrib/man/tuigreet-1.scd"
'tuigreet.conf')
sha256sums=('488f3f586217fe05cda3012e53304c0a45ec6edd4f5c6863704b0a20ca961106'
'3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986'
'6a1d9f158d5b8ab64b573d09ae4409873c6354ea0bf1ac6a0995796c23337c17'
'8f83aee7874aab5d06981a1d1cd05df906368a79dbca90d157a33a2f023b67d3')
build() {
scdoc < tuigreet-1.scd > tuigreet-1.roff
}
package() {
depends=(gcc-libs)
install -Dm755 "${srcdir}/tuigreet-${pkgver}-${CARCH}" "${pkgdir}/usr/bin/tuigreet"
install -Dm755 "${srcdir}/tuigreet-1.roff" "${pkgdir}/usr/share/man/man1/tuigreet.1"
install -Dm755 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/tuigreet/LICENSE"
install -Dm644 "${srcdir}/tuigreet.conf" "${pkgdir}/usr/lib/tmpfiles.d/tuigreet.conf"
}
|