blob: cd8d534ffec8eacba0c1d70d13450b48a11505ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"Setup temp build env": {
"pacman -Syy --noconfirm git" : null,
"useradd -m -G wheel builder" : null,
"#Correct way would be to do cat PKGBUILD | grep 'depends=' | head -n 1 | ..." : null,
"sed -i 's/# %wheel ALL=(ALL) NO/%wheel ALL=(ALL) NO/' /etc/sudoers" : null
},
"install slimdhcp": {
"git https://aur.archlinux.org/slimdhcp-git.git /tmp/slimdhcp" : null,
"chown -R builder.builder /tmp/slimdhcp" : null,
"su - builder -c \"cd /tmp/slimdhcp; /usr/bin/makepkg -s --noconfirm\"" : null,
"pacman -U --noconfirm /tmp/slimdhcp/*.xz" : null
},
"Remove temp build env": {
"rm -rf /tmp/slimdhcp" : null,
"sed -i 's/%wheel ALL=(ALL) NO/# %wheel ALL=(ALL) NO/' /etc/sudoers" : null
}
}
|