Skip to content

Instantly share code, notes, and snippets.

@xDShot
Last active May 27, 2021 11:29
Show Gist options
  • Save xDShot/91a78b16fae401d0f64aa1dc36e4ee51 to your computer and use it in GitHub Desktop.
Save xDShot/91a78b16fae401d0f64aa1dc36e4ee51 to your computer and use it in GitHub Desktop.
Installs specified pacman package and it's dependencies in separate root tree
#!/bin/sh
DIST_DIR=/seagate/pkg_dist/
mkdir -p ${DIST_DIR}/var/lib/pacman/
sudo pacman -r ${DIST_DIR} -b ${DIST_DIR}/var/lib/pacman/ -Syy
sudo pacman -r ${DIST_DIR} -b ${DIST_DIR}/var/lib/pacman/ -U $@
chmod -R a+rwX usr/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment