1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-06 03:53:59 +02:00

Add install instructions for openSUSE (#2727)

This commit is contained in:
Jesse Duffield 2023-08-28 20:10:49 +10:00 committed by GitHub
commit ecd2a14a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -320,6 +320,25 @@ ebuild lazygit-${LAZYGIT_VERSION}.ebuild manifest
emerge lazygit
```
### openSUSE
The lazygit package is currently built in [devel:languages:go/lazygit](https://build.opensuse.org/package/show/devel:languages:go/lazygit).
To install lazygit on openSUSE Tumbleweed run:
```sh
sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/openSUSE_Factory/devel:languages:go.repo
sudo zypper ref && sudo zypper in lazygit
```
To install lazygit on openSUSE Leap run:
```sh
source /etc/os-release
sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/$VERSION_ID/devel:languages:go.repo
sudo zypper ref && sudo zypper in lazygit
```
### FreeBSD
```sh