radare2/sys/farm/prepare.sh
pancake b60af6d878 * Initial implementation of sys/farm
- 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
2011-09-23 00:16:29 +02:00

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