mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 13:49:50 +00:00
2415d86fd6
* Some fixes in r_magic api to make r_lang/perl compile
13 lines
139 B
Bash
Executable File
13 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0` ; cd ..
|
|
|
|
run() {
|
|
[ ! -x sys/.mark_$1 ] && sys/$1.sh
|
|
}
|
|
|
|
run install
|
|
run python-deps
|
|
run python
|