mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-13 01:00:37 +00:00
13 lines
258 B
Bash
13 lines
258 B
Bash
|
#!/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
|