-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #605 from vthg2themax/patch-1
Update README.md
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Flatpak manifest can be found at: https://github.com/flathub/com.github.Murmele.Gittyup | ||
Arch PKGBUILD file can be found at: TODO (currently it is in #314) | ||
Linux (Tested On Ubuntu 22.04LTS) version is available in the buildUbuntu.sh file included in this directory. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
sudo apt install build-essential libgl1-mesa-dev | ||
sudo apt install cmake | ||
sudo apt install libgit2-dev | ||
sudo apt install cmark | ||
sudo apt install git | ||
sudo apt install libssh2-1-dev | ||
sudo apt install openssl | ||
sudo apt install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools | ||
sudo apt install qttools5-dev | ||
sudo apt install ninja-build | ||
cd ../../.. | ||
git fetch | ||
git submodule init | ||
git submodule update | ||
git pull | ||
git checkout deps | ||
cd dep/openssl/openssl/ | ||
./config -fPIC | ||
make | ||
cd | ||
mkdir -vp build/release | ||
cd build/release | ||
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../.. | ||
ninja | ||
|
||
|