blob: c1a6511622c81a43c458a14624c723f2cd4b9bde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: envolution
# Contributor: wilke
# shellcheck shell=bash disable=SC2034,SC2154
pkgname=harsh
pkgver=0.10.6
pkgrel=1
pkgdesc="CLI habit tracking for geeks"
arch=('any')
url="https://github.com/wakatara/harsh"
license=('MIT')
makedepends=('go>=1.14')
sha256sums=('8ab25823e52816d5ce203d1cb59e1b71b8fdfc1223b2a2144c8a7e3cb9ca8857')
source=("$pkgname-$pkgver.tgz::https://github.com/wakatara/harsh/archive/refs/tags/v$pkgver.tar.gz")
build() {
cd "$pkgname-$pkgver"
go get ./...
go build -o harsh .
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 harsh -t"$pkgdir/usr/bin/"
}
# vim:set ts=2 sw=2 et:
|