blob: 065bb281c42e1edb84eba78c1574085cb8f25d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
depends=(
$(
printf '%s\n' "${depends[@]}" | \
grep -v '^rfkill>\|^yp-tools>\|^eventlog>'
)
)
source=(
$(
printf '%s\n' "${source[q]}" | \
sed '
\,^https://git.archlinux.org/archboot.git/snapshot, s/\.[0-9]\+\.tar\.xz$/.tar.xz/
'
)
)
|