blob: e0dfcba87d78d434bfb6cfc0a056d463f3c68d10 (
plain)
1 # Description: Tools for monitoring system health (temperatures, voltages, fan speed, etc)
2 # URL: https://github.com/groeck/lm-sensors
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot guru
4 # Depends on: perl
5
6 name=lm_sensors
7 version=3.4.0
8 release=1
9 source=(https://github.com/groeck/lm-sensors/archive/V${version//./-}.tar.gz)
10
11 build () {
12 cd lm-sensors-${version//./-}
13
14 make install PREFIX=/usr \
15 ETCDIR=/usr/etc \
16 MANDIR=/usr/share/man \
17 DESTDIR=$PKG
18 }
|