dwarfs/.docker/install-bloaty.sh
2025-04-07 21:32:26 +02:00

20 lines
271 B
Bash

#!/bin/bash
set -ex
cd "$HOME"
mkdir pkgs
cd pkgs
git clone --recurse-submodules https://github.com/google/bloaty
cd bloaty
mkdir build
cd build
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local
ninja
ninja install
cd "$HOME"
rm -rf pkgs