added aur package
This commit is contained in:
parent
03e0dc40ab
commit
0db49ca23d
25
README.md
25
README.md
@ -6,6 +6,14 @@
|
|||||||
|
|
||||||
https://user-images.githubusercontent.com/51816057/144759799-b9eecf9e-93ad-43a7-a076-0ae47f03d03c.mp4
|
https://user-images.githubusercontent.com/51816057/144759799-b9eecf9e-93ad-43a7-a076-0ae47f03d03c.mp4
|
||||||
|
|
||||||
|
## Table of Contents
|
||||||
|
|
||||||
|
* [Roadmap](#roadmap)
|
||||||
|
* [Installing / Building](#installing--building)
|
||||||
|
* [AUR Package](#aur-package)
|
||||||
|
* [Manually](#manually)
|
||||||
|
* [Documentation](#documentation)
|
||||||
|
|
||||||
# Roadmap
|
# Roadmap
|
||||||
|
|
||||||
|
|
||||||
@ -17,6 +25,23 @@ https://user-images.githubusercontent.com/51816057/144759799-b9eecf9e-93ad-43a7-
|
|||||||
- [x] Fuzzy Searching
|
- [x] Fuzzy Searching
|
||||||
- [ ] Visual Mode (like vim) for updating playlists
|
- [ ] Visual Mode (like vim) for updating playlists
|
||||||
|
|
||||||
|
# Installing / Building
|
||||||
|
|
||||||
|
## AUR Package
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yay -S gomp-git
|
||||||
|
```
|
||||||
|
|
||||||
|
## Manually
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/aditya-K2/gomp &&
|
||||||
|
cd gomp &&
|
||||||
|
go build
|
||||||
|
```
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
|
|
||||||
The Documentation is hosted [here](https://aditya-K2.github.io/gomp/)
|
The Documentation is hosted [here](https://aditya-K2.github.io/gomp/)
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
## Table Of Contents
|
||||||
|
|
||||||
* [Prerequisites](#prerequisites)
|
* [Prerequisites](#prerequisites)
|
||||||
* [Installing / Building](#installing--building)
|
* [Installing / Building](#installing--building)
|
||||||
* [Configuration](#configuration)
|
* [Configuration](#configuration)
|
||||||
@ -16,14 +18,6 @@
|
|||||||
- Go Should Be Installed ( For Building )
|
- Go Should Be Installed ( For Building )
|
||||||
- After Reading this it is highly recommended to read the [sample_config](https://github.com/aditya-K2/gomp/blob/master/sample_config.yml)
|
- After Reading this it is highly recommended to read the [sample_config](https://github.com/aditya-K2/gomp/blob/master/sample_config.yml)
|
||||||
|
|
||||||
# Installing / Building
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/aditya-K2/gomp &&
|
|
||||||
cd gomp &&
|
|
||||||
go build
|
|
||||||
```
|
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
|
|
||||||
Configuration of gomp is done through a `config.yml` file in `$HOME/config/gomp/`
|
Configuration of gomp is done through a `config.yml` file in `$HOME/config/gomp/`
|
||||||
|
21
extras/PKGBUILD
Normal file
21
extras/PKGBUILD
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Maintainer: aditya-K2 <adityakurdunkar2@gmail.com>
|
||||||
|
pkgname=gomp-git
|
||||||
|
pkgver=0.1
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='MPD client inspired by ncmpcpp written in GO.'
|
||||||
|
arch=('any')
|
||||||
|
url="https://github.com/aditya-K2/gomp"
|
||||||
|
license=('GPL')
|
||||||
|
makedepends=('go')
|
||||||
|
source=("https://github.com/aditya-K2/gomp/archive/refs/heads/master.zip")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${pkgname%-git}-master"
|
||||||
|
go build
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname%-git}-master"
|
||||||
|
install -Dm 655 gomp -t "${pkgdir}/usr/bin"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user