add git package (#63)

This commit is contained in:
Adeeb Shihadeh
2026-03-23 18:13:19 -07:00
committed by GitHub
parent 0fc2d13e50
commit 54dafe6c1b
6 changed files with 275 additions and 2 deletions

View File

@@ -17,10 +17,10 @@ run_as_root() {
if [ "$(uname)" = "Darwin" ]; then
brew install nasm pkg-config ccache
elif command -v dnf &>/dev/null; then
dnf install -y nasm cmake gcc-c++ pkgconfig git perl-IPC-Cmd ccache
dnf install -y nasm cmake gcc-c++ pkgconfig git perl-IPC-Cmd ccache autoconf automake libtool
elif command -v apt-get &>/dev/null; then
run_as_root apt-get update
run_as_root apt-get install -y nasm cmake g++ pkg-config curl ccache
run_as_root apt-get install -y nasm cmake g++ pkg-config curl ccache autoconf automake libtool
fi
if ! command -v uv &>/dev/null; then