Add pacman-contrib

This commit is contained in:
MatMoul 2018-09-30 03:21:57 +02:00
parent 6fb2b8aac3
commit 0813c8b92b
2 changed files with 10 additions and 0 deletions

View file

@ -2,6 +2,7 @@
. ./lib
options=()
options+=("pacman-contrib" "Pacman contrib tools" on)
options+=("base-devel" "Build tools" on)
options+=("bash-completion" "Best completion in bash" on)
options+=("lsof" "ls open file" on)

View file

@ -2,6 +2,11 @@
. ./lib
options=()
if [ ! -f /usr/bin/pacdiff ]; then
options+=("Install pacman-contrib" "")
options+=("" "")
fi
if [ -f /usr/bin/trizen ]; then
options+=("Upgrade with trizen" "trizen -Syu")
aurhelper=1
@ -18,6 +23,7 @@ if [ -f /usr/bin/yaourt ]; then
options+=("Upgrade with yaourt" "yaourt -Syua")
aurhelper=1
fi
if [ ! "$aurhelper" = "1" ]; then
options+=("Install trizen" "")
options+=("Install yay" "")
@ -160,6 +166,9 @@ case $sel in
fi
;;
'Remove db.lck') rm /var/lib/pacman/db.lck;;
'Install pacman-contrib')
instpkg "pacman-contrib" ""
;;
'Install downgrade')
instpkg "" "downgrade"
;;