1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-10-02 06:21:01 -06:00
kiss/contrib/kiss-chbuild

27 lines
Plaintext
Raw Normal View History

2020-01-20 17:52:40 -07:00
#!/bin/sh -e
2020-05-01 00:07:20 -06:00
# Create/destroy temporary chroots
2020-01-20 17:52:40 -07:00
log() {
printf '\033[31;1m->\033[m %s.\n' "$@"
}
cd "${cac_dir:=$KISS_ROOT${XDG_CACHE_HOME:-$HOME/.cache}/kiss}"
[ -f kiss-chroot.tar.xz ] || {
log "Downloading chroot tarball"
2020-04-18 03:20:13 -06:00
url=https://github.com/kisslinux/repo/releases/download/1.9.11/
2020-02-19 14:46:13 -07:00
wget "$url/kiss-chroot.tar.xz"
2020-01-20 17:52:40 -07:00
}
[ -d kiss-chroot ] || {
log "Extracting chroot"
tar xf kiss-chroot.tar.xz
2020-01-20 17:52:40 -07:00
}
log "Creating temporary chroot"
2020-04-18 03:20:13 -06:00
cp -a kiss-chroot "chroot-$$"
2020-01-20 17:52:40 -07:00
log "Entering chroot"
2020-04-18 03:20:13 -06:00
su -c "kiss-chroot chroot-$$; rm -rf chroot-$$"