mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 04:16:12 +00:00
8bfa653909
* Use cutter-deps for Linux * Update CMakeLists.txt for newer PySide2 * Add llvm-config --libdir to LD_LIBRARY_PATH in Travis * Update cutter-deps * Fix Python Prefix for Deploy * Update cutter-deps * Install Jupyter in Travis * Add update_deps.py and update * Enable Python Bindings for qmake in Travis * Use absolute path for src_list.py in qmake * Use python directly for src_list.py in qmake * Keep env for linuxdeployqt * Embed PySide2 in AppImage * Fix appimage_embed_python.sh
15 lines
366 B
Bash
Executable File
15 lines
366 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname "${BASH_SOURCE[0]}")/..
|
|
mkdir -p cutter-deps && cd cutter-deps
|
|
|
|
FILE=cutter-deps.tar.gz
|
|
MD5=0805fa6a1626ce787f952b300e2b321d
|
|
URL=https://github.com/radareorg/cutter-deps/releases/download/v2/cutter-deps.tar.gz
|
|
|
|
curl -L "$URL" -o "$FILE" || exit 1
|
|
echo "$MD5 $FILE" | md5sum -c - || exit 1
|
|
tar -xf "$FILE" || exit 1
|
|
./relocate.sh || exit 1
|
|
|