summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorErikas2018-10-08 00:24:26 +0300
committerErikas2018-10-08 00:24:26 +0300
commit57f37054dc0f52bfee2229dae42722515a0ae35a (patch)
treee98d55f20fc2bf2bfd081003427d662f5db74901
parentcfd5ee7747cca5cc6faa299363e3e94b50f556c2 (diff)
downloadaur-57f37054dc0f52bfee2229dae42722515a0ae35a.tar.gz
update
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
-rw-r--r--nbfc-git.install21
3 files changed, 27 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d486b3ae923c..11ac1b229497 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = nbfc-git
pkgdesc = Cross-platform fan control service for notebooks (Development version)
- pkgver = 1.5.3.r71.gf45d282
+ pkgver = 1.61.r0.g69fcc11
pkgrel = 1
url = https://github.com/hirschmann/nbfc
+ install = nbfc-git.install
arch = i686
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index a7ee370feb02..ec2768cfaf02 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,15 @@
# Maintainer: Erikas Rudinskas <erikmnkl@gmail.com>
pkgname=nbfc-git
-pkgver=1.5.3.r71.gf45d282
+pkgver=1.61.r0.g69fcc11
pkgrel=1
pkgdesc='Cross-platform fan control service for notebooks (Development version)'
arch=('i686' 'x86_64')
url='https://github.com/hirschmann/nbfc'
conflicts=('nbfc-beta' 'nbfc')
-license=('GPL3')
-depends=('mono')
+license=("GPL3")
+install=${pkgname}.install
+depends=("mono")
makedepends=('ncurses<=6.0-4')
provides=('nbfc' 'ec-probe')
makedepends=('nuget')
diff --git a/nbfc-git.install b/nbfc-git.install
new file mode 100644
index 000000000000..3c3919355702
--- /dev/null
+++ b/nbfc-git.install
@@ -0,0 +1,21 @@
+# Colored makepkg-like functions
+msg_blue() {
+ printf "${blue}==>${bold} $1${all_off}\n"
+}
+
+note() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
+post_install() {
+ note "Consult Arch Linux Wiki if you are getting \"File Descriptor does not support writing\"."
+}
+
+post_upgrade() {
+ post_install
+}