mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 06:32:36 +01:00
26 lines
726 B
Plaintext
26 lines
726 B
Plaintext
# 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"
|