diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-22 19:35:55 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-22 19:35:55 -0500 |
commit | 98c92dc978dde707da3dd54f9b569b070f5cb500 (patch) | |
tree | ba14b0f0f9c4d233bf2770246948cea458fe1469 | |
parent | bcc2ffa90c4812e585b4330d0418a8af6c7edf82 (diff) |
Remove LFS_SRC and use /sources, make extraction text intense blue, and change the way we move files to include hidden files. Will be need for Perl and possibly other tarballs with hidden files.
-rw-r--r-- | packageinstall.sh | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/packageinstall.sh b/packageinstall.sh index 03e96b9..3e899a1 100644 --- a/packageinstall.sh +++ b/packageinstall.sh @@ -1,7 +1,7 @@ CHAPTER="$1" PACKAGE="$2" -if [ -f "${LFS_SRC}/chapter${CHAPTER}/${PACKAGE}" ]; then +if [ -f "${LFS}/sources/chapter${CHAPTER}/${PACKAGE}" ]; then echo -e "${GRN}Package ${YLW}${PACKAGE} ${GRN}already built and installed for ${YLW}Chapter ${CHAPTER}.${RST}" else @@ -16,14 +16,20 @@ else fi mkdir -p "${DIRNAME}" - echo -ne "${BLU}Extracting ${YLW}${CACHEFILE}... " - tar -xf "${CACHEFILE}" -C "${DIRNAME}" & pid=$! + echo -ne "${IBLU}Extracting ${YLW}${CACHEFILE}... " + tar xf "${CACHEFILE}" -C "${DIRNAME}" >/dev/null 2>&1 & pid=$! spinner "$pid" + retval=$? + if [ "$retval" -ne 0 ]; then + echo -e "${GRN}Extraction ${RED}FAILED!${RST}" + return $retval + fi + #TOPLEVELDIR = "tar -tf ${CACHEFILE} | sed -e 's@/.*@@' | uniq" pushd "${DIRNAME}" > /dev/null if [ "$(ls -1A | wc -l)" == "1" ]; then - mv $(ls -1A)/* ./ + find */ -mindepth 1 -maxdepth 1 -exec mv -t ./ -- {} + fi echo -ne "\n${CYN}Compiling ${YLW}${PACKAGE}${RST}... " |