blob: f1af17ed508a6224b8a67688eaec4f9d00204487 (
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
|
# Maintainer: Leonard Iklé <leonard.ikle@gmail.com>
pkgname=ziit
pkgver=1.3.6
pkgrel=2
pkgdesc="A cli to track times in combination with to the ziit-server."
arch=('x86_64')
url="https://dev.acosom.com/acosom/ziit/ziit-cli/"
license=('MIT')
depends=('cargs' 'libsodium' 'protobuf-c' 'chrono-date' 'confuse')
source=("https://dev.acosom.com/~downloads/projects/11/archives?revision=v$pkgver&format=tgz")
md5sums=('1b31d347d356fd563afd4bd3ca60513e')
build() {
make all
}
check() {
make check
}
package() {
make prefix=/usr DESTDIR="$pkgdir" install
}
|