Last active
May 27, 2021 11:29
-
-
Save xDShot/91a78b16fae401d0f64aa1dc36e4ee51 to your computer and use it in GitHub Desktop.
Installs specified pacman package and it's dependencies in separate root tree
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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