summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Zlobintsev2023-06-03 08:55:45 +0300
committerIlya Zlobintsev2023-06-03 08:55:45 +0300
commitbf859d689bab2f1f5bd022bc78c99cf0b191bd06 (patch)
treea78a8a9f4358d3eca081335e1eb05de2555f4117
parent6e8289e00c3eb1f53ed3cd50d2c5c9e97da5e401 (diff)
downloadaur-bf859d689bab2f1f5bd022bc78c99cf0b191bd06.tar.gz
add post-install message
-rw-r--r--.SRCINFO1
-rw-r--r--PKGBUILD1
-rw-r--r--lact.install6
3 files changed, 8 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fe75db8155c9..d2fde365f7b5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,6 +3,7 @@ pkgbase = lact-git
pkgver = r295.2108864
pkgrel = 1
url = https://github.com/ilya-zlobintsev/LACT
+ install = lact.install
arch = x86_64
arch = aarch64
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 489646ff2b09..86ef22993092 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,6 +12,7 @@ backup=('etc/lact/config.yaml')
source=("git+https://github.com/ilya-zlobintsev/LACT.git")
sha512sums=("SKIP")
provides=('lact')
+install=lact.install
pkgver() {
cd LACT
diff --git a/lact.install b/lact.install
new file mode 100644
index 000000000000..b2d509d56d2c
--- /dev/null
+++ b/lact.install
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+post_install() {
+ echo ":: To be able to change settings in LACT, you need to enable the lactd service:"
+ echo " sudo systemctl enable --now lactd"
+}