Updating packaging

This commit is contained in:
2023-10-14 13:14:40 -05:00
parent f0685bc0af
commit cc12803ecf
3 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
raven.mono
TheRaven-*.pkg.tar.zst
**.pkg.tar.zst
pkg/
src/
.config
+1 -1
View File
@@ -20,7 +20,7 @@ conflicts=()
replaces=("${pkgname,,}", "aninix-${pkgname,,}")
backup=()
options=()
install=
install=installscript
changelog=
source=()
noextract=()
+8
View File
@@ -0,0 +1,8 @@
pre_install() {
groupadd raven &>/dev/null
useradd -g raven -s /bin/false raven &> /dev/null
}
pre_remove() {
getent passwd raven &>/dev/null && userdel raven &> /dev/null
}