Files
builder/autobuilder/build
T

18 lines
408 B
Python
Raw Normal View History

2021-02-27 02:50:00 +03:00
#!/usr/bin/env bash
# The builder user is already created in the rootfs
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
export LC_ALL=en_US.UTF-8
export PKG_URL=$1
# Upgrade
2021-03-01 15:43:07 +03:00
pacman -Suy --noconfirm
2021-02-27 02:50:00 +03:00
# Workdir
2021-03-01 15:43:07 +03:00
chown -R builder:builder /.gnupg
2021-02-27 02:50:00 +03:00
cd /buildroot
# Build the damn thing
2021-03-01 15:43:07 +03:00
sudo -u builder git clone "$PKG_URL" .
sudo -u builder GNUPGHOME="/.gnupg" makepkg -s --noconfirm -L