-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathlibretro-fetch.sh
executable file
·166 lines (141 loc) · 3.85 KB
/
libretro-fetch.sh
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
if [ "$BASE_DIR" = "$SCRIPT" ]; then
BASE_DIR="$WORKDIR"
else
if [[ "$0" != /* ]]; then
# Make the path absolute
BASE_DIR="$WORKDIR/$BASE_DIR"
fi
fi
# --- Utility functions ---
. "$BASE_DIR/libretro-config.sh"
. "$BASE_DIR/script-modules/log.sh"
. "$BASE_DIR/script-modules/util.sh"
. "$BASE_DIR/script-modules/fetch-rules.sh"
. "$BASE_DIR/script-modules/module_base.sh"
# --- Rules for fetching things are in these files ---
. "$BASE_DIR/rules.d/core-rules.sh"
. "$BASE_DIR/rules.d/player-rules.sh"
. "$BASE_DIR/rules.d/devkit-rules.sh"
. "$BASE_DIR/rules.d/lutro-rules.sh"
. "$BASE_DIR/build-config.sh"
summary_fetch() {
# fmt is external and may not be available
fmt_output="$(find_tool "fmt")"
local num_success="$(numwords $fetch_success)"
local fmt_success="${fmt_output:+$(echo " $fetch_success" | $fmt_output)}"
local num_fail="$(numwords $fetch_fail)"
local fmt_fail="${fmt_output:+$(echo " $fetch_fail" | $fmt_output)}"
if [[ -z "$fetch_success" && -z "$fetch_fail" ]]; then
secho "No fetch actions performed."
return
fi
if [ -n "$fetch_success" ]; then
secho "$(color 32)$num_success core(s)$(color) successfully processed:"
secho "$fmt_success"
fi
if [ -n "$fetch_fail" ]; then
secho "$(color 31)$num_fail core(s)$(color) failed:"
secho "$fmt_fail"
fi
}
# libretro_fetch: Download the given core using its fetch rules
#
# $1 Name of the core to fetch
libretro_fetch() {
local module_name
local module_dir
local fetch_rule
local post_fetch_cmd
eval "module_name=\$libretro_${1}_name"
[ -z "$module_name" ] && module_name="$1"
echo "$(color 34)=== $(color 1)$module_name$(color)"
eval "fetch_rule=\$libretro_${1}_fetch_rule"
[ -z "$fetch_rule" ] && fetch_rule=git
eval "module_dir=\$libretro_${1}_dir"
[ -z "$module_dir" ] && module_dir="libretro-$1"
case "$fetch_rule" in
git)
local git_url
local git_submodules
eval "git_url=\$libretro_${1}_git_url"
if [ -z "$git_url" ]; then
echo "libretro_fetch:No URL set to fetch $1 via git."
if [[ "$SKIP_UNKNOWN_URL_FETCH" -ne 1 ]]; then
exit 1
else
echo "libretro_fetch:Skipping core $1"
fi
fi
eval "git_submodules=\$libretro_${1}_git_submodules"
# TODO: Don't depend on fetch_rule being git
echo "Fetching ${1}..."
fetch_git "$git_url" "$module_dir" "$git_submodules"
if [ $? -ne 0 ]; then
return 1
fi
;;
*)
echo "libretro_fetch:Unknown fetch rule for $1: \"$fetch_rule\"."
exit 1
;;
esac
eval "post_fetch_cmd=\$libretro_${1}_post_fetch_cmd"
if [ -n "$post_fetch_cmd" ]; then
echo_cmd "cd \"$WORKDIR/$module_dir\""
echo_cmd "$post_fetch_cmd"
if [ $? -ne 0 ]; then
exit 1
fi
fi
}
libretro_players="retroarch"
if [ -n "$1" ]; then
no_more_args=""
while [ -n "$1" ]; do
if [[ "$1" = -* && -z "$no_more_args" ]]; then
case "$1" in
--) no_more_args=1 ;;
--shallow) export SHALLOW_CLONE=1;;
--cores) fetch_cores="$libretro_cores" ;;
--devkit) fetch_devkits="$libretro_devkits" ;;
--lutro) fetch_lutros="$libretro_lutros" ;;
--players) fetch_players="$libretro_players" ;;
--retroarch) fetch_players="retroarch" ;;
*) ;;
esac
shift
continue
fi
fetch_cores="$fetch_cores $1"
# Handle non-commands
shift
done
else
# Make libretro-fetch.sh with no args behave traditionally by default
fetch_cores="$libretro_cores"
fetch_players="$libretro_players"
fetch_devkit="$libretro_devkits"
fi
for a in $fetch_players; do
libretro_fetch "${a%%:*}"
done
for a in $fetch_lutros; do
libretro_fetch "${a%%:*}"
done
for a in $fetch_devkits; do
libretro_fetch "${a%%:*}"
done
for a in $fetch_cores; do
libretro_fetch "${a%%:*}"
if [ $? -eq 0 ]; then
export fetch_success="$fetch_success$a "
else
export fetch_fail="$fetch_fail$a "
fi
done
summary_fetch