ctf-tools/radare2/install

8 lines
143 B
Text
Raw Normal View History

2015-05-07 21:40:08 +00:00
#!/bin/bash -e
git clone https://github.com/radare/radare2.git
cd radare2/
./configure --prefix=$(dirname $PWD)
make -j $(nproc)
make install