Files
aur-packages/pyfan/PKGBUILD

24 lines
822 B
Bash

# Maintainer: Giovanni Harting <539@idlegandalf.com>
pkgname=pyfan
pkgver=1.4.1
pkgrel=2
pkgdesc="Fan control utilising hwmon and pid"
arch=('any')
url="https://git.harting.dev/anonfunc/PyFan"
license=('GPL3')
depends=('python-yaml' 'python-simple-pid')
optdepends=('lm_sensors: check and load required hwmon modules')
backup=('etc/pyfan')
source=("https://git.harting.dev/anonfunc/PyFan/archive/$pkgver.tar.gz")
sha256sums=('b285e25df41940ec1c98d58b6890f16a6affa18fba7b4f7e54b435e1908c6d98')
package() {
cd "$pkgname"
install -Dm755 pyfan.py "${pkgdir}/usr/bin/pyfan.py"
install -Dm644 pyfan.service "${pkgdir}/usr/lib/systemd/system/pyfan.service"
install -Dm644 config-example.yaml "${pkgdir}/usr/share/doc/$pkgname/config-example.yaml"
install -Dm644 README.md "${pkgdir}/usr/share/doc/$pkgname/README"
}