-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added Linux/Unix to README #43
base: community
Are you sure you want to change the base?
Conversation
Thanks. But |
I will improve |
sollte jetzt alles passen |
passt jetzt alles? |
Co-authored-by: Tejas Kale <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please rebase that and do the minor adjustments?
This is an useful update so it would be good to get it in.
libs/README.rst
Outdated
:: | ||
|
||
$ cd /Users/governikus | ||
$ cd /home/governikus |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make that $HOME
and it is portable
now everything should be fine and could be merged |
How do I upvote this pull request? |
I am using "Debian GNU/Linux 11 (bullseye)" and I had to install LLVM 11 (https://apt.llvm.org/) as prerequisite: wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 11 all for building qt. The installation of the packages via apt-get fails with the error: [...]
+ test 11 -gt 14
+ apt-get install -y clang-11 lldb-11 lld-11 clangd-11 clang-tidy-11 clang-format-11 clang-tools-11 llvm-11-dev lld-11 lldb-11 llvm-11-tools libomp-11-dev libc++-11-dev libc++abi-11-dev libclang-common-11-dev libclang-11-dev libclang-cpp11-dev libunwind-11-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package libunwind-11-dev so the apt-get line has to be executed manually with a working apt-get install -y clang-11 lldb-11 lld-11 clangd-11 clang-tidy-11 clang-format-11 clang-tools-11 llvm-11-dev lld-11 lldb-11 llvm-11-tools libomp-11-dev libc++-11-dev libc++abi-11-dev libclang-common-11-dev libclang-11-dev libclang-cpp11-dev libunwind-dev |
The build worked. How do I create an executable for debian or create a deb-package? |
there is already an package https://packages.debian.org/sid/ausweisapp2 |
This is the package for The version of this package is Even the package for the more recent stable debian version |
there is an newer package in nixpkgs (nix package manager) https://nixos.org |
Nice. This is working! It should be added to the README. |
I recommend flatpak as an alternative: https://flathub.org/apps/de.bund.ausweisapp.ausweisapp2 |
I have made improvements to the README text section for macOS and created a new section for Linux/Unix. In the macOS section, I added information about the make -j parameter to speed up code compilation. In the Linux/Unix section, I provided instructions on how to set up and compile the source code.