mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 11:56:12 +00:00
59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This script is a work in progress
|
||
|
|
||
|
#### Constants ####
|
||
|
BUILDR2=1
|
||
|
|
||
|
#### User variables ####
|
||
|
BUILD="build"
|
||
|
#QMAKE_CONF="CONFIG+=CUTTER_ENABLE_JUPYTER CONFIG+=CUTTER_ENABLE_QTWEBENGINE"
|
||
|
QMAKE_CONF=""
|
||
|
|
||
|
# Checking for radare2
|
||
|
r2 -v >/dev/null 2>&1
|
||
|
if [ $? = 0 ]; then
|
||
|
R2COMMIT=$(r2 -v | tail -n1 | sed "s,commit: \\(.*\\) build.*,\\1,")
|
||
|
SUBMODULE=$(git submodule | awk '{print $1}')
|
||
|
if [ "$R2COMMIT" = "$SUBMODULE" ]; then
|
||
|
BUILDR2=0
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
# Check if qmake is available
|
||
|
qmake --help >/dev/null 2>&1
|
||
|
if [ $? != 0 ]; then
|
||
|
echo "You need qmake to build Cutter."
|
||
|
echo "Please make sure qmake is in your PATH environment variable."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Build radare2
|
||
|
if [ $BUILDR2 -eq 1 ]; then
|
||
|
answer="Y"
|
||
|
echo -n "A (new?) version of radare2 will be installed. Do you agree? [Y/n] "
|
||
|
read answer
|
||
|
if [ "$answer" = "Y" ]; then
|
||
|
git submodule init && git submodule update
|
||
|
cd radare2 || exit 1
|
||
|
./sys/install.sh
|
||
|
cd ..
|
||
|
else
|
||
|
echo "Sorry but this script won't work otherwise. Read the README."
|
||
|
exit 1
|
||
|
fi
|
||
|
else
|
||
|
echo "Correct radare2 version found, skipping..."
|
||
|
fi
|
||
|
|
||
|
# Build
|
||
|
mkdir "$BUILD"
|
||
|
cd "$BUILD" || exit 1
|
||
|
qmake "$QMAKE_CONF" ../src/Cutter.pro
|
||
|
make
|
||
|
cd ..
|
||
|
|
||
|
# Done
|
||
|
echo "Build complete. Binary available at: $BUILD/Cutter"
|
||
|
|