21 lines
458 B
Bash
21 lines
458 B
Bash
# Maintainer: abs3nt <abs3nt@asdf.cafe>
|
|
pkgname="gospt"
|
|
pkgver=0.0.2
|
|
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=(
|
|
'c9aab61c73733bfbedbd046c73469d873271b65d4c0a8fce51a27d9871fff6b9'
|
|
)
|
|
|
|
package() {
|
|
install -Dm755 gospt "${pkgdir}"/usr/bin/gospt
|
|
}
|