chore(users): add post installation script and further details.

This commit is contained in:
Eshan Roy (Eshanized)
2024-05-02 11:19:18 +05:30
parent f216f15fa0
commit 04b7cf8331
2 changed files with 8 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ arch=('any')
license=("MIT") license=("MIT")
source=("$pkgname.tar.gz") source=("$pkgname.tar.gz")
sha256sums=('SKIP') sha256sums=('SKIP')
install="${pkgname}.install"
pkgver() { pkgver() {
# cd "$srcdir/$pkgname" # cd "$srcdir/$pkgname"

View File

@@ -0,0 +1,7 @@
post_install() {
echo -e "\n** The files have been installed in /usr/share/tabliss/tabliss.json **\n"
}
post_upgrade() {
post_install
}