mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 23:50:40 +00:00
b60af6d878
- add missing sys/gtk.sh * Define TODO for 0.8.6 * Add URL attribute in dot graphs for 'ag' command - as requested by @hteso for bokken * Empty graphs are now printing nothing to stdout - same as above
16 lines
202 B
Bash
Executable File
16 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
# install all deps in order to setup the farm
|
|
PREPARE="
|
|
vala
|
|
swig
|
|
valabind
|
|
python-deps
|
|
mingw32-deps
|
|
mingw64-deps
|
|
"
|
|
|
|
cd `dirname $PWD/$0` ; cd ..
|
|
for a in ${PREPARE} ; do
|
|
./${a}.sh
|
|
done
|