mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-02 19:55:14 +00:00
23936cfbe5
- Make r2 -P use the r_egg api instead of the oldie rarc2
19 lines
216 B
Bash
Executable File
19 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0`
|
|
|
|
mkdir -p _work
|
|
cd _work
|
|
if [ -d valabind ]; then
|
|
cd valabind
|
|
hg pull -u
|
|
else
|
|
hg clone http://hg.youterm.com/valabind
|
|
cd valabind
|
|
fi
|
|
|
|
make clean
|
|
make
|
|
sudo make install
|