2023-08-01 08:12:38 +01:00
This repository houses the required manifests and build scripts for lune packaging.
2024-01-27 05:39:24 +00:00
For more information on lune, see [lune-org/lune ](https://github.com/lune-org/lune ).
2023-08-01 08:12:38 +01:00
## Packaging Statuses
2023-08-01 08:27:06 +01:00
| Platform | Status |
|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2023-08-07 06:59:20 +01:00
| Homebrew | ![GitHub Workflow Status (with event) ](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/homebrew_test.yaml?logo=apple&label=%20&color=black ) |
2023-08-01 08:27:06 +01:00
| AUR | ![GitHub Workflow Status (with event) ](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/aur_test.yaml?logo=archlinux&label=%20&color=black ) |
| Scoop | ![GitHub Workflow Status (with event) ](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/scoop_test.yaml?logo=windows&logoColor=blue&label=%20&color=black ) |
2023-08-05 14:10:29 +01:00
| AppImage | ![GitHub Workflow Status (with event) ](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/appimage.yaml?logo=linux&logoColor=yellow&label=%20&color=black ) |
| APT | ![GitHub Workflow Status (with event) ](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/apt.yaml?logo=debian&logoColor=red&label=%20&color=black ) |
2023-08-01 12:18:50 +01:00
## Installation
2023-08-07 06:59:20 +01:00
### Homebrew
2023-08-07 07:13:53 +01:00
Since lune has its cask published to Homebrew core, it can be installed as such:
- From precompiled binaries:
2023-08-07 06:59:20 +01:00
```console
brew install lune
```
2023-08-07 07:13:53 +01:00
- From source:
```console
brew install lune --build-from-source
```
2023-08-01 12:18:50 +01:00
### AUR
```console
yay -S lune
### OR ###
yay -S lune-git
### OR ###
yay -S lune-bin
```
### Scoop
```ps
scoop bucket add lune https://github.com/CompeyDev/lune-packaging.git
scoop install lune
```
2023-08-05 09:30:38 +01:00
### 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.
2023-08-05 14:10:29 +01:00
### 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
2023-08-05 18:21:10 +01:00
deb [signed-by=/usr/share/keyrings/lune-archive-keyring.gpg] https://repos.devcomp.xyz/ bookworm main
2023-08-05 14:10:29 +01:00
```
- Install the package:
```console
sudo apt update
sudo apt install lune
```