-
Notifications
You must be signed in to change notification settings - Fork 294
/
build
92 lines (83 loc) · 2.3 KB
/
build
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
ReplaceInclude()
{
local replace_path="$DEV_PATH"
local replace_name="$1"
if [ "$replace_name" == "build" ]
then
return
elif [ "$replace_name" == "src/\$self" ]
then
echo "${2:-}if [ \"\$self\" == \"tv\" ] || [ \"\$self\" == \"iptv\" ]"
echo "${2:-}then"
ReplaceInclude src/tv " ${2:-}"
bins=(v2 x nx or pve arm ibm cf cx ali lhh rc cw dr ha)
for bin in "${bins[@]}"
do
echo "${2:-}elif [ \"\$self\" == \"$bin\" ]"
echo "${2:-}then"
ReplaceInclude src/$bin " ${2:-}"
done
echo "${2:-}elif [ \"\$self\" == \"tr\" ]"
echo "${2:-}then"
ReplaceInclude src/tr " ${2:-}"
echo "${2:-}fi"
return
fi
while [[ $replace_name =~ \/ ]]
do
replace_path="$replace_path/${replace_name%%/*}"
replace_name="${replace_name#*/}"
done
local here=false here_tag=""
while IFS= read -r line
do
if [ "$here" = true ]
then
echo "$line"
if [ "$line" = "$here_tag" ]
then
here=false
fi
continue
elif [[ $line =~ ^([ ]*)cat([ ]) ]]
then
here=true
here_tag="${line#*<<}"
here_tag="${here_tag#"${here_tag%%[![:space:]]*}"}"
here_tag=${here_tag%% *}
here_tag=${here_tag#-}
fi
if [ -z "$line" ]
then
echo
elif [ "$here" = true ]
then
echo "$line"
elif [[ $line =~ ^([ ]*)Include\ ([^ ]+) ]]
then
ReplaceInclude ${BASH_REMATCH[2]} "${2:-}${BASH_REMATCH[1]}"
elif [[ $line =~ ^([ ]*)\$\{ ]] || [[ $line =~ ^([ ]*)\` ]] || [[ $line =~ ^([ ]*)\— ]]
then
echo "$line"
else
echo "${2:-}$line"
fi
done < "$replace_path/$replace_name"
}
BuildShFile()
{
ReplaceInclude make | sed '/DEV_PATH/,/sh_ver/{/sh_ver/!d;};/Include build/d' > "$DEV_PATH/iptv.sh"
if [ "$INSTALL_SH" = true ]
then
cp -f "$DEV_PATH/iptv.sh" "$SH_FILE"
fi
}
if [ "${1:-}" == "install" ]
then
INSTALL_SH=true
else
INSTALL_SH=false
fi
Spinner "Building iptv.sh" BuildShFile
Println "$info new iptv.sh created! For devs only!!\n"
exit 0