diff options
author | Barry Smith | 2019-06-19 17:23:36 -0400 |
---|---|---|
committer | Barry Smith | 2019-06-19 17:23:36 -0400 |
commit | 3078df493d3f25eafee5057c5bcc0aa6cc2b7b97 (patch) | |
tree | 5bc62af17f4c033ee4b04b395ac6494c0fa88109 | |
parent | a58d3aaae6dd9e0b477c49df9035cce7350d5964 (diff) | |
download | aur-3078df493d3f25eafee5057c5bcc0aa6cc2b7b97.tar.gz |
include manpage file for thinkfan.conf
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 6 insertions, 4 deletions
@@ -1,7 +1,7 @@ pkgbase = thinkfan pkgdesc = A minimalist fan control program. Supports the sysfs hwmon interface and thinkpad_acpi pkgver = 1.0.2 - pkgrel = 1 + pkgrel = 2 url = https://github.com/vmatare/thinkfan install = thinkfan.install arch = i686 @@ -1,9 +1,10 @@ -# Maintainer: nblock <nblock [/at\] archlinux DOT us> +# Maintainer: brrtsm at gmail.com +# Contributor: nblock <nblock [/at\] archlinux DOT us> # Contributor: Frederik Alkærsig (FALKER) <havnelisten AT gmail.com> pkgname=thinkfan pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="A minimalist fan control program. Supports the sysfs hwmon interface and thinkpad_acpi" url="https://github.com/vmatare/thinkfan" arch=('i686' 'x86_64') @@ -30,12 +31,13 @@ build() { package() { cd "$srcdir/$pkgname-$pkgver" - install -d -m755 "$pkgdir"/usr/{bin,lib/{modprobe.d,systemd/system},share/{doc/"$pkgname"/{,examples},man/man1}} + install -d -m755 "$pkgdir"/usr/{bin,lib/{modprobe.d,systemd/system},share/{doc/"$pkgname"/{,examples},man/man{1,5}}} install -d -m755 "$pkgdir"/etc/systemd/system/thinkfan.service.d install -D -m755 "$pkgname" "$pkgdir"/usr/bin install -D -m644 README "$pkgdir"/usr/share/doc/"$pkgname" install -D -m644 examples/* "$pkgdir"/usr/share/doc/"$pkgname"/examples install -D -m644 src/"$pkgname".1 "$pkgdir"/usr/share/man/man1 + install -D -m644 src/"$pkgname".conf.5 "$pkgdir"/usr/share/man/man5 install -D -m644 ../"$pkgname".service rcscripts/systemd/thinkfan-wakeup.service "$pkgdir"/usr/lib/systemd/system install -D -m644 rcscripts/systemd/override.conf "$pkgdir"/etc/systemd/system/thinkfan.service.d install -D -m644 ../thinkpad_acpi.conf "$pkgdir"/usr/lib/modprobe.d |