Some checks failed
Deploy Website / deploy-website (push) Successful in 39s
Publish kewt-git to AUR / publish-aur-git (push) Successful in 21s
Release Standalone Builder / build (release) Successful in 27s
Release Standalone Builder / publish-fedora (release) Failing after 15s
Release Standalone Builder / publish-aur (release) Successful in 22s
Release Standalone Builder / publish-homebrew (release) Successful in 7s
54 lines
744 B
Markdown
54 lines
744 B
Markdown
---
|
|
title = "Installation"
|
|
---
|
|
# Installation
|
|
|
|
## Standalone
|
|
|
|
```sh
|
|
curl -L -o kewt https://git.krzak.org/N0VA/kewt/releases/download/latest/kewt
|
|
chmod +x kewt
|
|
```
|
|
## From source
|
|
|
|
```sh
|
|
git clone https://git.krzak.org/N0VA/kewt.git
|
|
cd kewt
|
|
```
|
|
### Building
|
|
|
|
```sh
|
|
make
|
|
```
|
|
### Installing
|
|
|
|
```sh
|
|
sudo make install
|
|
```
|
|
## Package Managers
|
|
|
|
### AUR
|
|
|
|
- [kewt-bin](https://aur.archlinux.org/packages/kewt-bin) - prebuilt standalone binary from the latest release
|
|
- [kewt-git](https://aur.archlinux.org/packages/kewt-git) - built from the latest git source
|
|
|
|
### Homebrew
|
|
|
|
```sh
|
|
brew tap n0va-bot/tap
|
|
brew install kewt
|
|
```
|
|
|
|
### Fedora
|
|
|
|
```sh
|
|
sudo dnf copr enable n0va-bot/kewt
|
|
sudo dnf install kewt
|
|
```
|
|
|
|
### bpkg
|
|
|
|
```sh
|
|
bpkg install n0va-bot/kewt
|
|
```
|