blob: af3d91203dff571763b7bed7760cb72d2cf16302 (
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
|
# Maintainer: Tom Moore <middleagedman@users.noreply.github.com>
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Maintainer: Alexander Epaneshnikov <alex19ep@archlinux.org>
# Contributor: Ethan Skinner <aur@etskinner.com>
# Contributor: Grégoire Seux <grego_aur@familleseux.net>
# Contributor: Dean Galvin <deangalvin3@gmail.com>
# Contributor: NicoHood <archlinux@nicohood.de>
pkgname=home-assistant-git
pkgdesc='Open source home automation that puts local control and privacy first'
pkgver=2024.10.2
pkgrel=1
arch=(any)
url=https://home-assistant.io/
license=(APACHE)
depends=(
bluez-libs
ffmpeg
gcc
lapack
libffi
libjpeg-turbo
libtiff
openjpeg2
openssl
python
tzdata
zlib
)
makedepends=(
git
python-build
python-setuptools-git
python-wheel
)
_tag=6952d2420f38a793bbaf1375089d0e611f8e7766
source=(
"$pkgname::git+https://github.com/home-assistant/core.git#tag=${_tag}"
home-assistant-git.service
)
b2sums=('e679eaf30a24cc879fa0181916bb1956f2a96f63633c870d97d8c99b91f85e2ce522001840ea3d448c685947199ea3951a83744dccfa8e425bc9dde6026ad50b'
'289b6d19fa36b8bcea5790da13b83211eb44fcda889a24bf07a2ef70e806b5bb138c8f6387057d153e109a3bdabd0f4009c171fc82e021cdfd43db376704d416')
prepare() {
cd "${srcdir}"/home-assistant-git
# allow any setuptools and wheel to be used
sed 's/==69.2.0//; s/~=0.43.0//' -i pyproject.toml
}
pkgver() {
cd home-assistant-git
git describe --tags
}
build() {
cd home-assistant-git
python -m script.translations develop --all
python -m build --wheel --no-isolation
}
package() {
install -Dm 644 home-assistant-git/dist/*.whl -t "${pkgdir}"/usr/share/home-assistant-git/
sed "s/@VERSION@/${pkgver}/" -i home-assistant-git.service
install -Dm 644 home-assistant-git.service -t "${pkgdir}"/usr/lib/systemd/system/
}
# vim: ts=2 sw=2 et:
|