summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_fetch_download.subr
blob: bfe358f621c5a9648a3bd72a1b736381af87104a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# set +o errexit -o noglob -o nounset is assumed.
#

pkg_fetch_download() {
	if [ -n "${PKG_URL:-}" ]; then
		if ! rtl_fetch_url_wget "${PKG_URL}" "${PKG_SHA256SUM}" "${PKG_FNAME}" "${PKG_NAME}" "${PKG_MIRRORS}"; then
			return 1;
		fi;
	fi;
	if [ -n "${PKG_URLS_GIT:-}" ]; then
		if ! rtl_fetch_urls_git "${PKG_BASE_DIR}" ${PKG_URLS_GIT}; then
			return 1;
		fi;
	fi;
};

# vim:filetype=sh