summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_fetch_download.subr
blob: 57cad8be1084fad96158b8bec036bb3f0dcf670b (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}"; 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