diff --git a/docs/dev_guide/pkgbuild-template.md b/docs/dev_guide/pkgbuild-template.md index ef4c48a0..2c203481 100644 --- a/docs/dev_guide/pkgbuild-template.md +++ b/docs/dev_guide/pkgbuild-template.md @@ -72,7 +72,7 @@ Here is the PKGBUILD Template we follow specifically for Snigdha OS. # Maintainer: Your Name pkgname= org=Snigdha-OS # The username/organization username where you upload the Source Code. -branch=master # Your GitHub/GitLab/Gitea repository branch +branch=master # Your GitHub/GitLab/Gitea repository branch. Possible values: master, main, devlopment pkgver= # Initiate it with 1. pkgrel= # Initiate it with 1. pkgdesc='' # A short description of your package. @@ -82,6 +82,7 @@ license=('') # Possible options: MIT, GPL, AGPL, custom makedepends=('') # Dependency it install or run the package source=("") # The source of the package sha256sums=('') # checksums +install=$pkgname.install # Further instuction after installing/building the package. pkgver() { printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" @@ -93,4 +94,4 @@ pkgver() { package() { # Your package function goes here with instructions to build the package. } -``` \ No newline at end of file +```