summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f02b4421571b912c07455fe9f79fcd7c28c04728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: thecashewtrader <thecashewtrader at protonmail dot com>
pkgname=scafetch
pkgrel=2
pkgver=0.1.1
pkgdesc="A command-line tool to display information about your remote Git repositories in an aesthetic and visually pleasing way."
arch=('any')
url="https://github.com/iddev5/${pkgname}"
license=('MIT')
makedepends=('zig-master-bin' 'git' 'gyro-bin')
source=(git+https://github.com/iddev5/${pkgname}#tag=${pkgver})
sha256sums=('SKIP')

check() {
    cd "${srcdir}/${pkgname}"
    gyro build test
}

package() {
    cd "${srcdir}/${pkgname}"
	gyro build install -Drelease-fast --prefix "${pkgdir}/usr"
}