mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 11:52:25 +01:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
# Contributor: ScrumpyJack <scrumpyjack@me.com>
|
|
# Maintainer:
|
|
pkgname=taskd
|
|
pkgver=1.0.0
|
|
pkgrel=0
|
|
pkgdesc="Taskserver synchronises taskwarrior across multiple clients"
|
|
url="http://taskwarrior.org"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
depends_dev="gnutls-dev util-linux-dev"
|
|
makedepends="$depends_dev cmake"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://taskwarrior.org/download/${pkgname}-${pkgver}.tar.gz
|
|
Path.cpp.patch
|
|
Directory.cpp.patch"
|
|
|
|
|
|
_builddir=$srcdir/$pkgname-$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_INSTALL_PREFIX=/usr || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="1cead23539e36d5623cb3ca1225072c0 taskd-1.0.0.tar.gz
|
|
0e91d6e98a85f9ed42956c3220eca9f0 Path.cpp.patch
|
|
230518443e477b8181f3eb896355d5dc Directory.cpp.patch"
|
|
sha256sums="162ef1eec48f8145870ef0dbe0121b78a6da99815bc18af77de07fbb0abe02d0 taskd-1.0.0.tar.gz
|
|
75449122cf7c3e0a4d1061534ca80442b73b766790a31ec4535094556e6b8212 Path.cpp.patch
|
|
90cffb295f47c2a613680e53432b4c72a58ed19c218a5e7744acb076e96ab003 Directory.cpp.patch"
|
|
sha512sums="e60a07fc0ae9fbebb9e05a7f0c21df9cf3ea39ce01570168c51e60b2ccb9cf59ab85fd35821e1298048ee669bfc40560e010c06ba85d794272b897897e6d956b taskd-1.0.0.tar.gz
|
|
51f9a384c3c76c2719f8dbc378fad0717b02e508dcf3d08fcabf2ebed002501bb7760723d49ee210f15ac65b077c35ea765c22ea8793ead04141bc6f6b2c8b3a Path.cpp.patch
|
|
fa3c8bec063119e7a8321a1be26e3c16ae1d1cbb34aa06becc29830f1e78180514a68981d9fd4c34b63755ab9afa2c5a295efeeea6dbce263bdf9c010d7c28aa Directory.cpp.patch"
|