diff options
-rwxr-xr-x | build.sh | 2 | ||||
-rwxr-xr-x | source.sh | 12 |
2 files changed, 9 insertions, 5 deletions
@@ -3,7 +3,7 @@ cd $(dirname "$(readlink -f "$0")") if [ ! -e work/pacman ]; then mkdir work touch work/pacman - yes | pacman -Syu --needed $(sed 's:#.*$::' packages | xargs echo) + sed 's:#.*$::' packages | xargs pacman -Syu --needed --noconfirm fi sed 's:#.*$::' services | xargs systemctl enable @@ -24,24 +24,28 @@ cd .. git clone https://aur.archlinux.org/preloader-signed.git cd preloader-signed -yes | makepkg -si +makepkg --noconfirm -si cd .. git clone https://aur.archlinux.org/woeusb.git cd woeusb -yes | makepkg -si +makepkg --noconfirm -si cd .. git clone https;//aur.archlinux.org/gconf.git #minecraft-launcher dep cd gconf -yes | makepkg -si +makepkg --noconfirm -si cd .. git clone https://aur.archlinux.org/minecraft-launcher-beta.git cd minecraft-launcher-beta -yes | makepkg -si +makepkg --noconfirm -si cd .. +git clone https://aur.archlinux.org/zoom.git +cd zoom +makepkg --noconfirm -si + git clone https://git.hrhr.dev/utils cd utils sudo make install |