aboutsummaryrefslogtreecommitdiff
path: root/linux/makepkg/smolbote.install
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-10-07 12:58:37 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-10-07 12:58:37 +0200
commit93d7381aad2372d81e88bd5eadb74e3e53e7b9d6 (patch)
tree57ae2aedce59a7633db402e25405a6d6cc35220a /linux/makepkg/smolbote.install
parentMerge branch 'master' of ssh://gitea/aqua/smolbote (diff)
downloadsmolbote-93d7381aad2372d81e88bd5eadb74e3e53e7b9d6.tar.xz
Add hint on enabling plugins to makepkg
Diffstat (limited to 'linux/makepkg/smolbote.install')
-rw-r--r--linux/makepkg/smolbote.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/linux/makepkg/smolbote.install b/linux/makepkg/smolbote.install
new file mode 100644
index 0000000..87f0af8
--- /dev/null
+++ b/linux/makepkg/smolbote.install
@@ -0,0 +1,14 @@
+# Run this after installing
+post_install() {
+ cat <<EOM
+ == Note ==
+ To enable plugins, symlink them from /usr/local/lib/smolbote to the location
+ set in plugins.path (defaults to ~/.config/smolbote/plugins.d):
+ ln -s /usr/local/lib/smolbote/libPlugin.so ~/.config/smolbote/plugins.d
+EOM
+}
+
+# Run this after updating
+post_upgrade() {
+ post_install
+}