feat(users): add a post installation script.

This commit is contained in:
Eshan Roy (Eshanized)
2024-05-01 17:51:26 +05:30
parent d5876c3664
commit 6a87f421f8
2 changed files with 8 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ source=(
sha256sums=(
'SKIP'
)
install="${pkgname}.install"
pkgver(){
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"

View File

@@ -0,0 +1,7 @@
post_install() {
echo -e "\n** The files have been installed in /usr/lib/snigdhaos/launch-terminal **\n"
}
post_upgrade() {
post_install
}