blob: 267fb7af1fd6bedf2647b71c9663f7f50724443b (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Maintainer: Zach Himsel <zach [at] himsel [dot] net>
pkgname=hacompanion
_pkgname=hacompanion
_reponame=tobias-kuendig/hacompanion
pkgdesc="Daemon that sends local hardware information to Home Assistant"
url="https://github.com/${_reponame}"
license=('MIT')
pkgver=1.0.15
pkgrel=1
arch=('any')
conflicts=('hacompanion-git')
makedepends=('git' 'go')
source=("${_pkgname}::git+https://github.com/${_reponame}.git#tag=v${pkgver}"
"hacompanion.install"
"hacompanion.service"
"hacompanion.service-user"
"hacompanion.sysusers"
"hacompanion.tmpfiles"
"0001-Save-registration-file-to-var-lib-hacompanion.patch")
sha256sums=('SKIP'
'8d0bdc24a666302edb64759dcc82ba10f70de2fa06e489cd663362907aaf7c92'
'08ab69caf1b10f00b05942821e09c49a6223392ea7e35d685ecf243e7831436b'
'6f7df02bc2b8ef1b7b53d66018360b319596225c15a65c347c3cf6617094ec45'
'a6cf94385c30eee6de74caa6b63a5ca6ebcbf9451a95bcff7765d9972434af5d'
'b4242c4051c71ea275376d8a753a36c9816a1bab08eed8205ce97b2d958a9b4b'
'ae0d021f4b08f36151ff5c0c2497b8ab55cf5f101e29100b04a2d8b39b90fe9d')
backup=(
'etc/hacompanion/config.toml'
)
install='hacompanion.install'
prepare() {
repodir="${srcdir}/${_pkgname}"
cd "${repodir}"
patch --strip=1 --forward --input ../0001-Save-registration-file-to-var-lib-hacompanion.patch
}
build() {
repodir="${srcdir}/${_pkgname}"
cd "${repodir}"
CGO_ENABLED=0 \
GOOS=linux \
go build \
-ldflags "-s -w -X main.version=v${pkgver}" \
-o hacompanion
}
package() {
repodir="${srcdir}/${_pkgname}"
# binary
install -D -m755 "${repodir}/hacompanion" "${pkgdir}/usr/bin/hacompanion"
# configuration files
install -D -m755 "${repodir}/hacompanion.toml" "${pkgdir}/etc/hacompanion/config.toml"
# license
install -D -m644 "${repodir}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
# service
install -D -m644 "${srcdir}/${_pkgname}.service" "${pkgdir}/usr/lib/systemd/system/${_pkgname}.service"
install -D -m644 "${srcdir}/${_pkgname}.service-user" "${pkgdir}/usr/lib/systemd/user/${_pkgname}.service"
# systemd user and home directory
install -D -m644 "${srcdir}/${_pkgname}.sysusers" "${pkgdir}/usr/lib/sysusers.d/${_pkgname}.conf"
install -D -m644 "${srcdir}/${_pkgname}.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/${_pkgname}.conf"
}
|