-
Notifications
You must be signed in to change notification settings - Fork 6
/
build-aur.sh
executable file
·237 lines (211 loc) · 5.28 KB
/
build-aur.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#!/usr/bin/env bash
## Copyright (C) 2020-2024 Aditya Shakya <[email protected]>
##
## This script will download and build AUR pkgs.
## ANSI Colors (FG & BG)
RED="$(printf '\033[31m')" GREEN="$(printf '\033[32m')"
ORANGE="$(printf '\033[33m')" BLUE="$(printf '\033[34m')"
MAGENTA="$(printf '\033[35m')" CYAN="$(printf '\033[36m')"
WHITE="$(printf '\033[37m')" BLACK="$(printf '\033[30m')"
## Packages
DIR="$(pwd)"
PKGDIR="$DIR/packages_aur"
LIST=(blight
cava
ksuperkey
unimatrix-git
xfce-polkit
ckbcomp
mkinitcpio-openswap
mkinitcpio-firmware
ast-firmware
aic94xx-firmware
upd72020x-fw
wd719x-firmware
i3lock-color
betterlockscreen
networkmanager-dmenu-git
obmenu-generator
perl-linux-desktopfiles
berry
wayfire
wf-config
wayfire-plugins-extra
newm-atha-git
python-thefuzz
#python-dasbus
python-imageio
#wlr-randr
wlogout
yay
picom-ibhagwan-git
downgrade
mugshot
gtk3-nocsd-git
simplescreenrecorder
rofi-lbonn-wayland-git
sddm-git
wdisplays
swayfx
swaylock-effects
evilwm
cwm
light
)
## Sort packages
PKGS=(`for i in "${LIST[@]}"; do echo $i; done | sort`)
_pkgs=()
_failed=()
## Reset terminal colors
reset_color() {
tput sgr0 # reset attributes
tput op # reset color
return
}
## Script Termination
exit_on_signal_SIGINT () {
printf "\n\n%s\n\n" "Script interrupted." 2>&1
if [[ -d "$DIR"/0_aur_pkgs ]]; then
{ rm -rf "$DIR"/0_aur_pkgs; reset_color; exit 0; }
else
{ reset_color; exit 0; }
fi
}
exit_on_signal_SIGTERM () {
printf "\n\n%s\n\n" "Script terminated." 2>&1
if [[ -d "$DIR"/0_aur_pkgs ]]; then
{ rm -rf "$DIR"/0_aur_pkgs; reset_color; exit 0; }
else
{ reset_color; exit 0; }
fi
}
trap exit_on_signal_SIGINT SIGINT
trap exit_on_signal_SIGTERM SIGTERM
## Download AUR packages
download_pkgs () {
{ echo -e ${BLUE}"\n[*] Downloadind AUR packages...\n"; reset_color; }
mkdir -p "$DIR"/0_aur_pkgs && cd "$DIR"/0_aur_pkgs
_fail_to_download=()
for pkg in "${PKGS[@]}"; do
git clone --depth 1 https://aur.archlinux.org/${pkg}.git
if [[ "$?" -eq 0 ]]; then
{ echo -e ${GREEN}"\n'${pkg}' downloaded successfully.\n"; reset_color; }
else
{ echo -e ${RED}"\nFailed to download '${pkg}'.\n"; reset_color; }
_fail_to_download+=()
fi
done
## List failed packages
for _fd in "${_fail_to_download[@]}"; do
echo -e "Failed to download package : ${RED}${_fd}"
reset_color
done
if [[ -n "${_fail_to_download}" ]]; then
echo -e "\nDownload Manually.\n"
fi
}
## Chech for new version
check_ver () {
{ echo -e ${BLUE}"[*] Checking for new AUR packages...\n"; reset_color; }
cd "$DIR"/0_aur_pkgs
for pkg in "${PKGS[@]}"; do
cd ${pkg}
ver=`cat PKGBUILD | grep -i pkgver= | sed 's/.*=//g' | tr -d "'"`
rel=`cat PKGBUILD | grep -i pkgrel= | sed 's/.*=//g' | tr -d "'"`
new=${ver}-${rel}
current=`pacman -Q ${pkg} 2>/dev/null | awk '{print $2}'`
echo "[*] Package Name : ${pkg}"
echo "[+] New version : ${ORANGE}$new"${WHITE}
echo "[-] Current version : ${CYAN}$current"${WHITE}
if [[ "$new" != "$current" ]]; then
if [[ -z "$current" ]]; then
echo -e ${MAGENTA}"[!] Package ${pkg} not found.\n"${WHITE}
else
echo -e ${RED}"[!] Package ${pkg} needs an update, Added to build list.\n"${WHITE}
_pkgs+=("${pkg}")
fi
else
echo -e ${GREEN}"[*] Package ${pkg} is already the latest.\n"${WHITE}
fi
cd "$DIR"/0_aur_pkgs
done
}
## Build Updated AUR packages
build_new_pkgs () {
if [[ ! -d "$PKGDIR" ]]; then
mkdir -p "$PKGDIR"
fi
{ echo -e ${BLUE}"[*] Building New AUR Packages...\n"; reset_color; }
cd "$DIR"/0_aur_pkgs
for _pkg in "${_pkgs[@]}"; do
echo "Building ${_pkg}..."
cd ${_pkg} && makepkg -s
if [[ "$?" -eq 0 ]]; then
echo -e "Package '${_pkg}' generated successfully.\n"
mv *.pkg.tar.zst "$PKGDIR"
else
echo -e "\nFailed to build '${_pkg}', Added to failed list.\n"
_failed+=("${_pkg}")
fi
cd "$DIR"/0_aur_pkgs
done
## List failed packages
for _fail in "${_failed[@]}"; do
echo -e "Failed to build package : ${RED}${_fail}"
reset_color
done
if [[ -n "${_failed}" ]]; then
echo -e "Build manually.\n"
fi
}
## Build All AUR packages
build_pkgs () {
if [[ ! -d "$PKGDIR" ]]; then
mkdir -p "$PKGDIR"
fi
{ echo -e ${BLUE}"[*] Building All AUR Packages...\n"; reset_color; }
cd "$DIR"/0_aur_pkgs
for pkg in "${PKGS[@]}"; do
echo "Building ${pkg}..."
cd ${pkg} && makepkg -s
if [[ "$?" -eq 0 ]]; then
echo -e "Package '${pkg}' generated successfully.\n"
mv *.pkg.tar.zst "$PKGDIR"
else
echo -e "\nFailed to build '${pkg}', Added to failed list.\n"
_failed+=("${pkg}")
fi
cd "$DIR"/0_aur_pkgs
done
## List failed packages
for _fail in "${_failed[@]}"; do
echo -e "Failed to build package : ${RED}${_fail}"
reset_color
done
if [[ -n "${_failed}" ]]; then
echo -e "Build manually.\n"
fi
}
## Cleanup
cleanup () {
{ echo -e ${BLUE}"[*] Cleaning up..."; reset_color; }
rm -rf "$DIR"/0_aur_pkgs
if [[ ! -d "$DIR"/0_aur_pkgs ]]; then
{ echo -e "\nCleanup Completed.\n"; exit 0; }
else
{ echo -e "\nCleanup failed.\n"; exit 1; }
fi
}
## Main
if [[ -n "$1" ]]; then
download_pkgs
if [[ "$1" == "--new" ]]; then
check_ver
build_new_pkgs
elif [[ "$1" == "--all" ]]; then
build_pkgs
fi
cleanup
else
echo "[!] Options : --new --all"
fi