Skip to content

Commit

Permalink
Merge pull request #826 from nst1911/fix-ubuntu-build-script
Browse files Browse the repository at this point in the history
Fix ubuntu build script
  • Loading branch information
Murmele authored Jan 23, 2025
2 parents 1612c7a + 135c1fc commit 2e02fb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MIT License

Copyright (c) 2018 Scientific Toolworks, Inc.
Copyright (c) 2021-2024 Gittyup contributors
Copyright (c) 2021-2025 Gittyup contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
21 changes: 7 additions & 14 deletions pack/buildUbuntu.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
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 ../../..
#!/bin/bash

sudo apt update
sudo apt install -y build-essential libgl1-mesa-dev cmake libgit2-dev cmark git \
libssh2-1-dev openssl qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools qttools5-dev ninja-build
cd ..
git fetch
git submodule init
git submodule update
Expand All @@ -17,10 +12,8 @@ git checkout deps
cd dep/openssl/openssl/
./config -fPIC
make
cd
cd -
mkdir -vp build/release
cd build/release
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../..
ninja


0 comments on commit 2e02fb7

Please sign in to comment.