aurman
This commit is contained in:
parent
674ef621c7
commit
1344289fda
1 changed files with 29 additions and 4 deletions
|
@ -107,12 +107,34 @@ function pacaurmanagerinstall() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function aurmanagerinstall() {
|
||||||
|
|
||||||
|
cd /home/"$username"/
|
||||||
|
pwd
|
||||||
|
if [ -d /home/"$username"/aurman ];then
|
||||||
|
echo "Bereits vorhanden!!!"
|
||||||
|
cd /home/"$username"/aurman
|
||||||
|
su "$username" -c "git pull"
|
||||||
|
cd ..
|
||||||
|
else
|
||||||
|
su "$username" -c "git clone https://aur.archlinux.org/aurman.git"
|
||||||
|
fi
|
||||||
|
pwd
|
||||||
|
cd aurman
|
||||||
|
pwd
|
||||||
|
su "$username" -c "makepkg -si --skipchecksums --skippgpcheck --nocheck --noconfirm --install --needed"
|
||||||
|
pwd
|
||||||
|
cd /
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function yaourtinstall() {
|
function yaourtinstall() {
|
||||||
su "$username" -c "yaourt -S $1 --needed --noconfirm"
|
su "$username" -c "yaourt -S $1 --needed --noconfirm"
|
||||||
}
|
}
|
||||||
|
|
||||||
function pacaurinstall() {
|
function aurinstall() {
|
||||||
su "$username" -c "pacaur -S $1 --needed --noconfirm --noedit"
|
su "$username" -c "aurman -S $1 --needed --noconfirm --noedit"
|
||||||
}
|
}
|
||||||
|
|
||||||
function standartinstallation() {
|
function standartinstallation() {
|
||||||
|
@ -332,8 +354,11 @@ fi
|
||||||
|
|
||||||
if [ "${version}" != "libre" ]; then
|
if [ "${version}" != "libre" ]; then
|
||||||
#yaourtmanagerinstall
|
#yaourtmanagerinstall
|
||||||
pacaurmanagerinstall
|
#pacaurmanagerinstall
|
||||||
pacaurinstall pamac-aur
|
aurmanagerinstall
|
||||||
|
aurinstall pamac-aur
|
||||||
|
aurinstall google-chrome
|
||||||
|
aurinstall mugshot
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue