mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-03 06:51:57 +01:00
27 lines
667 B
Plaintext
27 lines
667 B
Plaintext
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
pkgname=tasksh
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="A shell command that wraps Taskwarrior commands"
|
|
url="https://taskwarrior.org/docs/review.html"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="task"
|
|
makedepends="cmake"
|
|
subpackages="$pkgname-doc"
|
|
source="http://taskwarrior.org/download/tasksh-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
cmake . \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="0c0a678a1cf48d1b7fcc123da5152d74bbb4334520252788ad38e3cb9bd2a5189902c066d7dbc848a23f6c7c25e53a8e1dc240dd6e57dbbdc993079a3e9fc417 tasksh-1.2.0.tar.gz"
|