21 lines
458 B
Bash
21 lines
458 B
Bash
# Maintainer: abs3nt <abs3nt@asdf.cafe>
|
|
pkgname="gospt"
|
|
pkgver=0.0.1
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="Spotify TUI and CLI written in Go"
|
|
arch=("x86_64" "amd64")
|
|
url="https://gitea.asdf.cafe/abs3nt/gospt"
|
|
license=('GPL')
|
|
depends=()
|
|
source=(
|
|
"https://gitea.asdf.cafe/abs3nt/gospt/releases/download/v${pkgver}/gospt"
|
|
)
|
|
sha256sums=(
|
|
'c6597d5b3f3762f58f9f750a3e0f5402b9fb507c4b0f3028a037c69eb34d110a'
|
|
)
|
|
|
|
package() {
|
|
install -Dm755 gospt "${pkgdir}"/usr/bin/gospt
|
|
}
|