Skip to content
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

Open
wants to merge 10 commits into
base: community
Choose a base branch
from

Conversation

transgirllucy
Copy link

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.

@CLAassistant
Copy link

CLAassistant commented Mar 22, 2023

CLA assistant check
All committers have signed the CLA.

@misery
Copy link
Contributor

misery commented Mar 22, 2023

Thanks. But -j is already used in the sub calls of openssl and Qt. Our libs script won't be faster if you provide -j like this.
See: https://github.com/Governikus/AusweisApp2/blob/community/libs/CMakeLists.txt#L65

@transgirllucy
Copy link
Author

I will improve

libs/README.rst Outdated Show resolved Hide resolved
libs/README.rst Outdated Show resolved Hide resolved
@transgirllucy
Copy link
Author

sollte jetzt alles passen

@transgirllucy
Copy link
Author

passt jetzt alles?

@transgirllucy transgirllucy requested review from misery and marceltransier and removed request for misery and marceltransier March 28, 2023 08:02
@transgirllucy transgirllucy requested a review from MrKinau April 18, 2023 11:07
libs/README.rst Outdated Show resolved Hide resolved
Co-authored-by: Tejas Kale <[email protected]>
Copy link

@GitMensch GitMensch left a 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 Show resolved Hide resolved
libs/README.rst Outdated
::

$ cd /Users/governikus
$ cd /home/governikus

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

@misery misery self-assigned this Jan 23, 2024
@transgirllucy
Copy link
Author

now everything should be fine and could be merged

libs/README.rst Outdated Show resolved Hide resolved
@MBanucu
Copy link

MBanucu commented Jul 20, 2024

How do I upvote this pull request?

@MBanucu
Copy link

MBanucu commented Jul 20, 2024

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 libunwind-dev version:

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

@MBanucu
Copy link

MBanucu commented Jul 20, 2024

The build worked. How do I create an executable for debian or create a deb-package?

@transgirllucy
Copy link
Author

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

@MBanucu
Copy link

MBanucu commented Jul 24, 2024

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 sid but I am using bullseye: https://packages.debian.org/bullseye/utils/ausweisapp2

The version of this package is 1.22.0-1 and this is not compatible with the version of the Android app. I don't want to use sid because I tried it a few years ago and I got into a lot of trouble. So how do I create a deb-package out of the compiled code?

Even the package for the more recent stable debian version bookworm the version is too old to be usable (1.26.2-1): https://packages.debian.org/bookworm/utils/ausweisapp2

@transgirllucy
Copy link
Author

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 sid but I am using bullseye: https://packages.debian.org/bullseye/utils/ausweisapp2

The version of this package is 1.22.0-1 and this is not compatible with the version of the Android app. I don't want to use sid because I tried it a few years ago and I got into a lot of trouble. So how do I create a deb-package out of the compiled code?

Even the package for the more recent stable debian version bookworm the version is too old to be usable (1.26.2-1): https://packages.debian.org/bookworm/utils/ausweisapp2

there is an newer package in nixpkgs (nix package manager) https://nixos.org

@MBanucu
Copy link

MBanucu commented Jul 25, 2024

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 sid but I am using bullseye: https://packages.debian.org/bullseye/utils/ausweisapp2
The version of this package is 1.22.0-1 and this is not compatible with the version of the Android app. I don't want to use sid because I tried it a few years ago and I got into a lot of trouble. So how do I create a deb-package out of the compiled code?
Even the package for the more recent stable debian version bookworm the version is too old to be usable (1.26.2-1): https://packages.debian.org/bookworm/utils/ausweisapp2

there is an newer package in nixpkgs (nix package manager) https://nixos.org

Nice. This is working!

It should be added to the README.

@misery
Copy link
Contributor

misery commented Jul 25, 2024

I recommend flatpak as an alternative: https://flathub.org/apps/de.bund.ausweisapp.ausweisapp2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.