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

add Fedora build documentation #183

Merged
merged 3 commits into from
Apr 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion doc/development.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,33 @@ Build and install the Qt5 plugin http://pyotherside.readthedocs.io/en/latest/#bu
qtdeclarative5-dev \
qtquickcontrols2-5-dev

==== Linux (Fedora 29)

$ sudo dnf install qt5-devel qt5-qtbase-devel qt5-qtdeclarative-devel qt5-qtquickcontrols2-devel \
qt5-qtquickcontrols qt5-qtgraphicaleffects pyotherside

=== Setup the repository

$ git clone https://github.com/Yubico/yubikey-manager-qt.git
$ cd yubikey-manager-qt

=== Compile the app

On Windows, macOS & Debian-based Linux distributions:

$ qmake && make

On Fedora 29:

$ qmake-qt5 && make

=== Run the app

$ ykman-gui

=== Code Style & Linting

This project uses http://flake8.pycqa.org/[Flake8] (for the python parts) and qmllint
This project uses http://flake8.pycqa.org/[Flake8] (for the python parts) and qmllint
(for the QML parts) for code style with a http://pre-commit.com/[pre-commit] hook.

To use these:
Expand Down