mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-04-20 03:43:46 +01:00
chore(README): instructions for installing from apt repo
This commit is contained in:
parent
13cabbd8d8
commit
61158dd0f8
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
@ -7,7 +7,8 @@ For more information on lune, see [filiptibell/lune](https://github.com/filiptib
|
||||||
|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| AUR |  |
|
| AUR |  |
|
||||||
| Scoop |  |
|
| Scoop |  |
|
||||||
| AppImage |  |
|
| AppImage |  |
|
||||||
|
| APT |  |
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
@ -28,3 +29,19 @@ scoop install lune
|
||||||
|
|
||||||
### AppImage
|
### AppImage
|
||||||
Go to the [GitHub Actions Page](https://github.com/CompeyDev/lune-packaging/actions/workflows/appimage.yaml), and download the artifact suitable for your architecture from the build artifacts.
|
Go to the [GitHub Actions Page](https://github.com/CompeyDev/lune-packaging/actions/workflows/appimage.yaml), and download the artifact suitable for your architecture from the build artifacts.
|
||||||
|
|
||||||
|
### APT
|
||||||
|
- Import the GPG signing keys:
|
||||||
|
```sh
|
||||||
|
curl https://id.devcomp.xyz/hi@devcomp.xyz/2.gpg | gpg --import
|
||||||
|
sudo sh -c "curl https://id.devcomp.xyz/hi@devcomp.xyz/2.gpg | sudo gpg --dearmor > /usr/share/keyrings/lune-archive-keyring.gpg"
|
||||||
|
```
|
||||||
|
- Add the repository to `sources.list`:
|
||||||
|
```md
|
||||||
|
deb [signed-by=/usr/share/keyrings/lune-archive-keyring.gpg] http://repos.devcomp.xyz/ bookworm main
|
||||||
|
```
|
||||||
|
- Install the package:
|
||||||
|
```console
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install lune
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue