Skip to content

Commit

Permalink
Merge pull request #605 from vthg2themax/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
Murmele authored Aug 23, 2023
2 parents 6efe178 + 4172841 commit 24f52d9
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,11 @@ where `<path-to-qt>` points to the Qt install directory that contains
`bin`, `lib`, etc.

**Build**

```
ninja
```

### A Convenient Shell Script for Ubuntu is available [here](https://raw.githubusercontent.com/Murmele/Gittyup/master/pack/buildUbuntu.sh), and will install all the necessary prerequisites, and build a release version for immediate use.

How to Install
-----------------
Expand Down Expand Up @@ -177,7 +180,6 @@ function run_disown_silence(){
run_disown_silence flatpak run com.github.Murmele.Gittyup
```


How to Contribute
-----------------

Expand Down
1 change: 1 addition & 0 deletions pack/Readme.md
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.
26 changes: 26 additions & 0 deletions pack/buildUbuntu.sh
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


0 comments on commit 24f52d9

Please sign in to comment.