ctf-tools/elfparser/install
2025-03-09 23:39:51 -07:00

24 lines
362 B
Bash
Executable file

#!/bin/bash -ex
mkdir bin
git clone https://github.com/mentebinaria/elfparser-ng elfparser-ng
pushd elfparser-ng
git apply ../cstdint.patch
popd
mkdir qt
pushd qt
cmake ../elfparser-ng
make -j
mv elfparser-ng ../bin/elfparser-gui-ng
popd
mkdir cli
pushd cli
cmake -D qt=no ../elfparser-ng
make -j
mv elfparser-cli-ng ../bin/
popd
rm -rf cli qt elfparser-ng