blob: af075622949a6b992141b3f2157736f4698bf5e9 (
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
|
pkgname='co2mon-git'
pkgdesc='CLI for MasterKit CO2 Monitor'
pkgver=2.1.0.r19.g940fcf1
pkgrel=2
arch=('i686' 'x86_64')
license=('GPL3')
url='https://github.com/dmage/co2mon'
conflicts=('co2mon')
depends=('hidapi')
optdepends=('munin-node: for monitoring sensor values via munin'
'collectd: monitor sensor values with collectd (check /usr/share/doc/co2mon/examples/collectd)')
makedepends=('git' 'cmake')
install=$pkgname.install
source=('git+https://github.com/dmage/co2mon.git'
'99-co2mon.rules'
'co2mon.service'
'co2mon-git.tmpfiles.conf')
md5sums=('SKIP'
'75b24b8d57fc7f2f8c9d3a5d4fe4b6ac'
'fdeea5531fba56e6b392290e0de79002'
'ad1ef6873b453a9f09447c70d74921ff')
pkgver() {
cd "$srcdir/co2mon"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
mkdir -pv "$srcdir/co2mon/build"
cd "$srcdir/co2mon/build"
cmake \
-DCMAKE_INSTALL_PREFIX:PATH="$pkgdir/usr" \
-DCMAKE_INSTALL_LIBDIR:PATH=lib \
..
make
}
package() {
cd "$srcdir/co2mon/build" || exit 1
make install
install -Dvm644 -t "$pkgdir/usr/lib/udev/rules.d" "$srcdir/99-co2mon.rules"
install -Dvm644 -t "$pkgdir/usr/lib/systemd/system/" "$srcdir/co2mon.service"
install -Dvm644 "$srcdir/co2mon-git.tmpfiles.conf" "$pkgdir/usr/lib/tmpfiles.d/co2mon-git.conf"
install -Dvm755 -t "$pkgdir/usr/lib/munin/plugins" "$srcdir/co2mon/graph/munin/"*
install -Dvm644 -t "$pkgdir/usr/share/doc/co2mon/examples/collectd" "$srcdir/co2mon/graph/collectd/"*
}
|