radare2/sys/maemo.sh
2011-09-23 02:31:43 +02:00

13 lines
258 B
Bash
Executable File

#!/bin/sh
mad list >/dev/null 2>&1
if [ $? = 0 ]; then
make clean
echo './configure --without-ssl --prefix=/usr --with-little-endian' | mad sh
echo make | mad sh
cd maemo
make
else
echo "Cannot find 'mad'. Please install QtSDK or QtCreator"
exit 1
fi