Add missing xxd dep

This commit is contained in:
Tim Crawford
2021-05-13 10:11:47 -06:00
committed by Jeremy Soller
parent 316376c271
commit aa880033e3

View File

@ -23,7 +23,8 @@ if [[ "${ID}" =~ "debian" ]] || [[ "${ID_LIKE}" =~ "debian" ]]; then
gcc-avr \ gcc-avr \
libudev-dev \ libudev-dev \
make \ make \
sdcc sdcc \
xxd
elif [[ "${ID}" =~ "fedora" ]] || [[ "${ID_LIKE}" =~ "fedora" ]]; then elif [[ "${ID}" =~ "fedora" ]] || [[ "${ID_LIKE}" =~ "fedora" ]]; then
sudo dnf install \ sudo dnf install \
--assumeyes \ --assumeyes \
@ -33,7 +34,8 @@ elif [[ "${ID}" =~ "fedora" ]] || [[ "${ID_LIKE}" =~ "fedora" ]]; then
curl \ curl \
make \ make \
sdcc \ sdcc \
systemd-devel systemd-devel \
vim-common
elif [[ "${ID}" =~ "arch" ]] || [[ "${ID_LIKE}" =~ "arch" ]]; then elif [[ "${ID}" =~ "arch" ]] || [[ "${ID_LIKE}" =~ "arch" ]]; then
sudo pacman -S \ sudo pacman -S \
--noconfirm \ --noconfirm \
@ -43,7 +45,8 @@ elif [[ "${ID}" =~ "arch" ]] || [[ "${ID_LIKE}" =~ "arch" ]]; then
curl \ curl \
make \ make \
sdcc \ sdcc \
systemd-libs systemd-libs \
vim
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"