Skip to content

Commit

Permalink
Merge pull request #254 from proneon267/patch-2
Browse files Browse the repository at this point in the history
Added missing Arch package instruction.
  • Loading branch information
freakboy3742 committed Aug 27, 2023
2 parents 8747f7f + 6e24b85 commit f47aa2b
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions docs/tutorial/tutorial-3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,7 @@ or doing other pre-distribution tasks.
.. group-tab:: Linux

The output of the package step will be slightly different depending on
your Linux distribution. If you're on a Debian-derived distribution,
you'll see:
your Linux distribution. If you're on a Debian-derived distribution, you'll see:

.. code-block:: console
Expand All @@ -408,7 +407,7 @@ or doing other pre-distribution tasks.
[helloworld] Packaged dist/helloworld_0.0.1-1~ubuntu-jammy_amd64.deb
The ``dist`` folder will contain the DEB file that was generated.
The ``dist`` folder will contain the ``.deb`` file that was generated.

If you're on a RHEL-based distribution, you'll see:

Expand Down Expand Up @@ -438,7 +437,27 @@ or doing other pre-distribution tasks.
[helloworld] Packaged dist/helloworld-0.0.1-1.fc36.x86_64.rpm
The ``dist`` folder will contain the RPM file that was generated.
The ``dist`` folder will contain the ``.rpm`` file that was generated.

If you're on an Arch-based distribution, you'll see:

.. code-block:: console
(beeware-venv) $ briefcase package
[helloworld] Finalizing application configuration...
Targeting arch:rolling (Vendor base arch)
Determining glibc version... done
Targeting glibc 2.37
Targeting Python3.10
[helloworld] Building .pkg.tar.zst package...
...
Building Arch package... done
[helloworld] Packaged dist/helloworld-0.0.1-1-x86_64.pkg.tar.zst
The ``dist`` folder will contain the ``.pkg.tar.zst`` file that was generated.

Other Linux distributions aren't currently supported for packaging.

Expand Down

0 comments on commit f47aa2b

Please sign in to comment.