forked from LibreELEC/LibreELEC.tv
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathget
More file actions
executable file
·57 lines (46 loc) · 1.45 KB
/
Copy pathget
File metadata and controls
executable file
·57 lines (46 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
. config/options "${1}"
if [ -z "${1}" ]; then
for i in $(find "${PACKAGES}/" -type f -name "package.mk"); do
GET_PKG=$(grep "^PKG_NAME=" "${i}" | sed -e "s,\",,g" -e "s,PKG_NAME=,,")
"${SCRIPTS}"/get "${GET_PKG}"
done
fi
# Avoid concurrent processing of the same package
lock_source_dir() {
exec 99<"${SOURCES}/${1}"
if ! flock --nonblock --exclusive 99; then
echo "Project/Device ${DEVICE:-${PROJECT}} waiting, to avoid concurrent processing of ${1}..."
flock --exclusive 99
fi
}
if [ -n "${PKG_URL}" -a -n "${PKG_SOURCE_NAME}" ]; then
mkdir -p "${SOURCES}/${1}"
PACKAGE="${SOURCES}/${1}/${PKG_SOURCE_NAME}"
STAMP_URL="${PACKAGE}.url"
STAMP_SHA="${PACKAGE}.sha256"
# determine get handler based on protocol and/or filename
case "${PKG_URL}" in
git://* | *.git)
get_handler="git"
;;
file://*)
get_handler="file"
;;
*)
get_handler="archive"
;;
esac
if ! listcontains "${GET_HANDLER_SUPPORT}" "${get_handler}"; then
die "ERROR: get handler \"${get_handler}\" is not supported, unable to get package ${1} - aborting!"
else
get_handler="${SCRIPTS}/get_${get_handler}"
if [ ! -f "${get_handler}" ]; then
die "ERROR: get handler \"${get_handler}\" does not exist, unable to get package ${1} - aborting!"
fi
. "${get_handler}"
fi
fi
exit 0