# Maintainer: Rene Hollander # Contributor: Sefa Eyeoglu _pkgname=nfancurve pkgname=${_pkgname} pkgver=019.4 pkgrel=1 pkgdesc="A small and lightweight Bash script for using a custom fan curve in Linux for NVIDIA GPUs" arch=("any") url="https://github.com/nan0s7/nfancurve" license=("GPL3") depends=("bash" "nvidia-utils" "nvidia-settings" "procps") conflicts=("${_pkgname}-git") backup=('etc/nfancurve.conf') install=${_pkgname}.install source=("${_pkgname}-${pkgver}::https://github.com/nan0s7/${_pkgname}/archive/v${pkgver}.tar.gz") sha512sums=('6332de1993a50ab0199e7a3749c3bad026362e5062d8e983b868b5b8e029209c7d60929497299d7e603efa5ae09b92c7182ca47bd11b817a2a54489980bd92c8') package() { cd "${_pkgname}-${pkgver}" install -Dm755 "temp.sh" "$pkgdir/usr/bin/nfancurve" install -Dm644 "config" "$pkgdir/etc/nfancurve.conf" install -Dm644 "nfancurve.service" "$pkgdir/usr/lib/systemd/user/nfancurve.service" install -Dm644 "README.md" "$pkgdir/usr/share/doc/${_pkgname}/README.md" install -Dm644 "USAGE.md" "$pkgdir/usr/share/doc/${_pkgname}/USAGE.md" install -Dm644 "LICENCE" "$pkgdir/usr/share/licenses/${_pkgname}/LICENSE" }