mirror of
https://github.com/mhx/dwarfs.git
synced 2025-08-03 17:56:12 -04:00
20 lines
271 B
Bash
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
|