blob: 0b350a95a824229f0789379ad0b13cc02d5ff592 (
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
|
# Maintainer: Carmine Margiotta <car.margiotta@icloud.com>
pkgname='mqtt-system-monitor'
pkgver=0.0.1alpha
pkgrel=1
pkgdesc="MQTT System Monitor, compatible with Home Assistant"
arch=('any')
url="https://github.com/cmargiotta/MQTT-System-Monitor"
license=('GPL')
groups=()
depends=(
'paho-mqtt-c'
'openssl'
'lua'
)
makedepends=(
'git'
'meson'
'ninja'
)
checkdepends=()
optdepends=()
provides=(
'msm'
)
conflicts=(
'msm'
)
replaces=()
backup=(
etc/msm/sensors/*
usr/lib/systemd/system/msm.service
)
options=()
install=
changelog=
source=("https://github.com/cmargiotta/$pkgname/archive/refs/tags/$pkgver.tar.gz")
noextract=()
sha256sums=('44dc17a0c5bbef68f0d12489375ae3aa8fea210c2367cc8e2623795ea0e03447')
build() {
cd $srcdir/$pkgname-$pkgver
pwd
meson --prefix /usr build
meson compile -C build
}
package() {
cd $srcdir/$pkgname-$pkgver
meson install -C build --destdir "$pkgdir"
}
|