Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.19 KB

README.md

File metadata and controls

43 lines (34 loc) · 1.19 KB

Build Status Coverage Status Dependency Status

ReconStruct

Qt 5 tool to help reverse engineer binary file formats, such as game files.

System Dependencies

  • qt5-base
  • libxkbcommon-x11
  • PyQt5

ReconStruct needs the python bindings of QHexEdit.

The following needs to be run to install the bindings in /home.

cd ReconStruct
git submodule init
git submodule update
cd QHexEdit/src
qmake .
make
sudo make install
cd QHexEdit/python
./build.sh
python setup.py install --user

Python Dependencies

See requirements.txt or run

pip install -r requirements.txt

Note

Travis testing has been disabled until travis-ci.org upgrades to 14.04. This is to avoid building PyQt5 every time.