Move Readme Content Pointer To Requested Location

This commit is contained in:
vthg2themax 2023-07-31 08:33:46 -04:00
parent 2929161a30
commit 59486dae35
3 changed files with 30 additions and 0 deletions

View File

@ -134,6 +134,9 @@ where `<path-to-qt>` points to the Qt install directory that contains
**Build**
ninja
### A Convenient Shell Script for Linux is available in the following location:
`pack/build.sh`, and will install all the necessary prerequisites, and build a release version for immediate use.
How to Install
-----------------

View File

@ -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 build.sh file included in this directory.

26
pack/build.sh Executable file
View File

@ -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