summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorling17292020-10-27 20:49:21 -0700
committerling17292020-10-27 20:49:21 -0700
commite209e5524293c0d53fc4821d4c759ca092aaa215 (patch)
tree986f9ef06c0d70c41d1788f87a66ca1b453a871d
parent3685645b99f507a320d8ee0e45db55d02643c32f (diff)
downloadaur-e209e5524293c0d53fc4821d4c759ca092aaa215.tar.gz
Post install message
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--fetchcord.install5
3 files changed, 9 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 98af1de997d9..26e0c6a20c18 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = fetchcord-git
pkgdesc = FetchCord grabs your OS info and displays it as Discord Rich Presence
- pkgver = r540.fbdee30
+ pkgver = r692.071ba37
pkgrel = 1
url = https://github.com/MrPotatoBobx/fetchcord
+ install = fetchcord.install
arch = any
license = MIT
depends = python-pypresence
diff --git a/PKGBUILD b/PKGBUILD
index efb2288c12e3..179af12637ac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer Lingfeng Ren <lastname+firstname+8thfibonaccinumber@gmail.com>
pkgname=fetchcord-git
-pkgver=r540.fbdee30
+pkgver=r692.071ba37
pkgrel=1
pkgdesc="FetchCord grabs your OS info and displays it as Discord Rich Presence"
arch=('any')
@@ -12,6 +12,7 @@ provides=('fetchcord')
depends=('python-pypresence' 'neofetch' 'python-psutil' 'python-setuptools')
source=("fetchcord::git+$url#branch=master")
sha256sums=('SKIP')
+install=fetchcord.install
pkgver() {
cd "$srcdir/fetchcord"
diff --git a/fetchcord.install b/fetchcord.install
new file mode 100644
index 000000000000..7865afc1a559
--- /dev/null
+++ b/fetchcord.install
@@ -0,0 +1,5 @@
+post_install() {
+ cat << EOF
+==> To start the service on boot run systemctl --user enable --now fetchcord.service
+EOF
+}