aboutsummaryrefslogtreecommitdiff
path: root/install_dependencies.sh
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-30 20:44:18 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-30 20:44:18 -0400
commitb516d8c7c6403f1a5f67eddbfd96150c9d71ae09 (patch)
treeb02fbb7e4a3c9195e4faa147f739a1f83b15e464 /install_dependencies.sh
parentdfedf3f2bb434065da3ddbc931e87a4017535f80 (diff)
Remove checks and dependencies
Diffstat (limited to 'install_dependencies.sh')
-rwxr-xr-xinstall_dependencies.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index 53412213..9b9026e9 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -48,19 +48,19 @@ fi
# Install packages
case "$PKG_MGR" in
- apt) $SUDO apt install libgc-dev libunistring-dev binutils patchelf libgmp-dev ;;
- dnf) $SUDO dnf install gc-devel libunistring-devel binutils patchelf gmp-devel ;;
- pacman) $SUDO pacman -S gc libunistring binutils patchelf gmp ;;
- yay|paru) $PKG_MGR -S gc libunistring binutils patchelf gmp ;;
- xbps) $SUDO xbps-install -S gc libunistring binutils patchelf gmp ;;
- pkg_add) $SUDO pkg_add boehm-gc libunistring binutils patchelf gmp ;;
- freebsd-pkg) $SUDO pkg install boehm-gc libunistring binutils patchelf gmp ;;
- brew) brew install bdw-gc libunistring binutils llvm patchelf gmp ;;
- macports) $SUDO port install boehm-gc libunistring binutils patchelf gmp ;;
- zypper) $SUDO zypper install gc-devel libunistring-devel binutils patchelf gmp-devel ;;
- nix) nix-env -iA nixpkgs.boehmgc.dev nixpkgs.libunistring nixpkgs.binutils nixpkgs.patchelf nixpkgs.gmp ;;
- spack) spack install boehm-gc libunistring binutils patchelf gmp ;;
- conda) conda install boehm-gc libunistring binutils patchelf gmp ;;
+ apt) $SUDO apt install libgc-dev libunistring-dev binutils libgmp-dev ;;
+ dnf) $SUDO dnf install gc-devel libunistring-devel binutils gmp-devel ;;
+ pacman) $SUDO pacman -S gc libunistring binutils gmp ;;
+ yay|paru) $PKG_MGR -S gc libunistring binutils gmp ;;
+ xbps) $SUDO xbps-install -S gc libunistring binutils gmp ;;
+ pkg_add) $SUDO pkg_add boehm-gc libunistring binutils gmp ;;
+ freebsd-pkg) $SUDO pkg install boehm-gc libunistring binutils gmp ;;
+ brew) brew install bdw-gc libunistring binutils llvm gmp ;;
+ macports) $SUDO port install boehm-gc libunistring binutils gmp ;;
+ zypper) $SUDO zypper install gc-devel libunistring-devel binutils gmp-devel ;;
+ nix) nix-env -iA nixpkgs.boehmgc.dev nixpkgs.libunistring nixpkgs.binutils nixpkgs.nixpkgs.gmp ;;
+ spack) spack install boehm-gc libunistring binutils gmp ;;
+ conda) conda install boehm-gc libunistring binutils gmp ;;
*)
echo "Unknown package manager: $PKG_MGR" >&2
exit 1