Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #57 from kisslinux/ifsbaby
Browse files Browse the repository at this point in the history
Use if instead of case
  • Loading branch information
dylanaraps authored Sep 23, 2019
2 parents 815e14d + 944f531 commit 1f089cc
Showing 1 changed file with 36 additions and 44 deletions.
80 changes: 36 additions & 44 deletions kiss
Original file line number Diff line number Diff line change
Expand Up @@ -132,27 +132,24 @@ pkg_sources() {
repo_dir=$(pkg_find "$1")

while read -r src _; do
case $src in
# Remote source.
*://*)
[ -f "${src##*/}" ] && {
log "$1" "Found cached source '${src##*/}'"
continue
}

wget "$src" || {
rm -f "${src##*/}"
die "$1" "Failed to download $src"
}
;;

# Local source.
*)
[ -f "$repo_dir/$src" ] || die "$1" "No local file '$src'"

log "$1" "Found local file '$src'"
;;
esac
# Remote source (cached).
if [ -f "${src##*/}" ]; then
log "$1" "Found cached source '${src##*/}'"

# Remote source.
elif [ -z "${src##*://*}" ]; then
wget "$src" || {
rm -f "${src##*/}"
die "$1" "Failed to download $src"
}

# Local source.
elif [ -f "$repo_dir/$src" ]; then
log "$1" "Found local file '$src'"

else
die "$1" "No local file '$src'"
fi
done < "$repo_dir/sources"
}

Expand All @@ -166,29 +163,24 @@ pkg_extract() {
while read -r src dest; do
mkdir -p "$mak_dir/$1/$dest" && cd "$mak_dir/$1/$dest"

case $src in
# Only 'tar' archives are currently supported for extraction.
# Any other file-types are simply copied to '$mak_dir' which
# allows for manual extraction.
*://*.tar*|*://*.tgz)
tar xf "$src_dir/$1/${src##*/}" --strip-components 1 \
|| die "$1" "Couldn't extract ${src##*/}"
;;

*)
# Local file.
if [ -f "$repo_dir/$src" ]; then
cp -f "$repo_dir/$src" .

# Remote file.
elif [ -f "$src_dir/$1/${src##*/}" ]; then
cp -f "$src_dir/$1/${src##*/}" .

else
die "$1" "Local file $src not found"
fi
;;
esac
# Only 'tar' archives are currently supported for extraction.
# Any other file-types are simply copied to '$mak_dir' which
# allows for manual extraction.
if [ -z "${src##*.tar*}" ] || [ -z "${src##*.tgz}" ]; then
tar xf "$src_dir/$1/${src##*/}" --strip-components 1 \
|| die "$1" "Couldn't extract ${src##*/}"

# Local file.
elif [ -f "$repo_dir/$src" ]; then
cp -f "$repo_dir/$src" .

# Remote file.
elif [ -f "$src_dir/$1/${src##*/}" ]; then
cp -f "$src_dir/$1/${src##*/}" .

else
die "$1" "Local file $src not found"
fi
done < "$repo_dir/sources"
}

Expand Down

0 comments on commit 1f089cc

Please sign in to comment.