makedeb


pacstall 2.0.1-69


Pacstall is the AUR alternative for Ubuntu

Click here to go back to the commit logs for pacstall.

Commit:


Hash: 11a9e8008511a19ed332019b9146427596e3fc45

Message: Add completion and man pages

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 110715b..73a79c3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,7 +3,7 @@ generated-by = makedeb-makepkg
 pkgbase = pacstall
 	pkgdesc = Pacstall is an AUR alternative for Ubuntu
 	pkgver = 1.5.1
-	pkgrel = 1
+	pkgrel = 1.1
 	url = https://pacstall.dev
 	arch = x86_64
 	license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 9e32df4..331e50b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: TwilightBlood <hwengerstickel@pm.me>
 pkgname=pacstall
 pkgver=1.5.1
-pkgrel=1
+pkgrel=1.1
 pkgdesc="Pacstall is an AUR alternative for Ubuntu"
 arch=('x86_64')
 provides=("pacstall")
@@ -26,7 +26,13 @@ package() {
   mkdir -p "${pkgdir}/usr/share/pacstall/scripts"
   mkdir -p "${pkgdir}/usr/share/pacstall/repo"
   mkdir -p "${pkgdir}/var/log/pacstall/error_log"
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
+  mkdir -p "${pkgdir}/usr/share/man/man8"
   install -Dm755 pacstall "${pkgdir}/bin"
   install -Dm755 misc/scripts/* "${pkgdir}/usr/share/pacstall/scripts"
+  install -Dm755 misc/completions/bash "${pkgdir}/usr/share/bash-completion/completions"
+  install -Dm755 misc/completions/fish "${pkgdir}/usr/share/fish/vendor_completions.d"
+  install -Dm755 misc/pacstall.8.gz "${pkgdir}/usr/share/man/man8"
   echo "https://raw.githubusercontent.com/pacstall/pacstall-programs/master" > "${pkgdir}/usr/share/pacstall/repo/pacstallrepo.txt"
 }