Add deps for Arch Linux

This commit is contained in:
Tim Crawford 2021-05-12 17:14:53 -06:00 committed by Jeremy Soller
parent 8bdcf243ec
commit 316376c271

View File

@ -34,6 +34,16 @@ elif [[ "${ID}" =~ "fedora" ]] || [[ "${ID_LIKE}" =~ "fedora" ]]; then
make \ make \
sdcc \ sdcc \
systemd-devel systemd-devel
elif [[ "${ID}" =~ "arch" ]] || [[ "${ID_LIKE}" =~ "arch" ]]; then
sudo pacman -S \
--noconfirm \
avr-gcc \
avr-libc \
avrdude \
curl \
make \
sdcc \
systemd-libs
else else
msg "Please add support for your distribution to:" msg "Please add support for your distribution to:"
msg "scripts/deps.sh" msg "scripts/deps.sh"