blob: 9f126bee352184304a552b5f2baee187ee49053a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Dion Vu
pkgname=spogo
pkgver=0.2.0
pkgrel=1
pkgdesc="A Spotify terminal interface with clean aesthetic"
arch=('aarch64' 'x86_64')
url="https://github.com/dionvu/spogo"
license=('MIT')
depends=('go')
makedepends=('go')
source=("$pkgname-$pkgver.tar.gz::https://github.com/dionvu/spogo/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('SKIP')
build() {
cd "spogo-$pkgver/"
go build -o spogo main.go
}
package() {
cd "spogo-$pkgver/"
install -Dm755 spogo "$pkgdir/usr/bin/spogo"
}
|