summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_fetch_download.subr
blob: 126675adba40a7726a4d4973a92c1e04f3e96d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# set +o errexit -o noglob 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