aur_builder/run.sh

39 lines
583 B
Bash
Executable File

#!/bin/bash
set -xeuo pipefail
# sudo sed -i '$ a 169.254.1.2 archmirror.i.balki.me' /etc/hosts
sudo sh -c 'echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts'
sudo pacman -Syu
yay_build() {
# not working yet
# rm-rf .git
git config --global user.email "aur_builder@balki.me"
git config --global user.name "Balakrishnan Balasubramanian"
makepkg --printsrcinfo >.SRCINFO
yay -Bi "$PWD"
}
makepkg_build() {
if [ -d deps ]; then
sudo pacman -U deps/*pkg.tar*
fi
makepkg -s
}
cp -r /w .
cd ./w
# bash
# yay_build
makepkg_build
sudo cp ./*pkg.tar* /w