blob: 902a90d33e331d9665b7986acfb0e3a28ebfd58f (
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
|
# Contributor: Matthieu Monnier <matthieu.monnier@enalean.com>
# Maintainer: Matthieu Monnier <matthieu.monnier@enalean.com>
pkgname=timew
pkgver=1.1.1
pkgrel=0
pkgdesc="Timewarrior is a command line time tracking application."
options="!check" # No testsuite
url="https://taskwarrior.org/"
arch="all"
license="MIT"
makedepends="cmake"
subpackages="$pkgname-doc"
source="https://taskwarrior.org/download/$pkgname-$pkgver.tar.gz"
build() {
cmake . -DCMAKE_BUILD_TYPE=release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="d262227d6dc99994599252c9fc55d32e4caac9d5ff1f223b8637005ed9f4f7fa238bd5cb7392c8e42a468f6246a7afad9b6fdb02af636e53d3bd813cfc3ee110 timew-1.1.1.tar.gz"
|