radare2/sys/gtkaml.sh

19 lines
252 B
Bash
Raw Normal View History

#!/bin/sh
# find root
2015-06-17 03:47:36 +00:00
cd "$(dirname "$PWD/$0")"
mkdir -p _work
cd _work
if [ -d gtkaml ]; then
cd gtkaml
svn up
else
svn co https://gtkaml.googlecode.com/svn/trunk gtkaml
cd gtkaml
fi
sh autogen.sh --prefix=/usr && \
make && \
sudo make install