Created
February 18, 2022 04:24
-
-
Save conoro/17025b21eeb7fc39bbf65c7c65ce09ee to your computer and use it in GitHub Desktop.
Build SQLiteStudio 3 on Raspberry Pi 4 64-bit OS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install qt5-default qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools tcl tcl-dev libreadline-dev qtscript5-dev libsqlite3-dev qttools5-dev libqt5svg5-dev | |
curl -o sqlitestudio-3.3.zip https://codeload.github.com/pawelsalawa/sqlitestudio/zip/refs/heads/3.3 | |
unzip sqlitestudio-3.3.zip | |
cd sqlitestudio-3.3 | |
mkdir -p output/build | |
cd output/build | |
qmake "CONFIG += portable" ../../SQLiteStudio3 | |
make | |
cd ../SQLiteStudio/ | |
./sqlitestudio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment