summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e90247d5cd71d0b7459de7b74dae3b92157d61bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Relwi <theofficialdork@hotmail.com>
pkgname=twitch-tui-alpha
pkgver=2.0.0
pkgrel=1
pkgdesc='Twitch chat in the terminal'
url='https://github.com/Xithrius/twitch-tui'
source=("$pkgname-$pkgver.tar.gz::https://github.com/Xithrius/twitch-tui/archive/v$pkgver-alpha.12.tar.gz")
arch=(x86_64 arm aarch64)
license=(Apache)
makedepends=(cargo git)
conflicts=(twitch-tui)
sha256sums=('fe407dd56eb4474da8be56e45be9d7d41dab7b8a902a8513a9effd55dc331561')

build () {
  cd "twitch-tui-$pkgver-alpha.12"
  cargo build --release
}

package() {
  cd "twitch-tui-$pkgver-alpha.12"
  install -Dm755 target/release/twt "${pkgdir}/usr/bin/twt"
}