- 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
15 lines
202 B
Bash
Executable file
15 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
|