mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 10:12:59 +01:00
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=task
|
|
pkgver=2.3.0
|
|
pkgrel=0
|
|
pkgdesc="A command-line to do list manager"
|
|
url="http://taskwarrior.org"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev cmake util-linux-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://taskwarrior.org/download/task-$pkgver.tar.gz
|
|
musl-fix.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/task-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
cmake . \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make install DESTDIR="$pkgdir"
|
|
}
|
|
|
|
md5sums="2c1d2c64311855f3519ad038ebd372ac task-2.3.0.tar.gz
|
|
1e826dcc0aa6a0c08a6e2b7c450945cd musl-fix.patch"
|
|
sha256sums="2b9a289109e691e305b84631622299853134cf195d4c9af962759b640176ac73 task-2.3.0.tar.gz
|
|
60ece7d726ad383434a802dbfb6d4479200457031e879af0c95e3dd416d562fb musl-fix.patch"
|
|
sha512sums="9a17ec79735800edb6b5b4c6eede6ef62e8374a80a4f566b967e8ee45883e0d3533d4c3643a858f12adf6b9021fb8c9d54cae7620ca4749cf4237f0235e1d483 task-2.3.0.tar.gz
|
|
d9e704d47cb1e5a151b39d2733b40fe9a8503d08329bbc4dbe385c59b0dfe6fb60f59888aa10f5139937cd0012326606c9edbdd0677af444d1e66d8c867cceb7 musl-fix.patch"
|