blob: e5af198d8168dfbafdcfc9d435a810cdd553addb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Louis Tim Larsen <louis(a)louis.dk>
_shortname=tarry
pkgname=${_shortname}-git
pkgver=e8ec286
pkgrel=1
pkgdesc="CLI tool for waiting until a specific time"
arch=(any)
url="https://github.com/metaphyze/tarry"
license=('Apache')
depends=('go')
source=("git+https://github.com/metaphyze/tarry.git")
sha512sums=('SKIP')
build() {
cd ${srcdir}/${_shortname}
go build
}
package() {
install -D "${srcdir}/${_shortname}/${_shortname}" -t "$pkgdir/usr/bin/"
}
|