mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 11:22:30 +01:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
# Contributor: ScrumpyJack <scrumpyjack@me.com>
|
|
# Maintainer:
|
|
pkgname=taskd
|
|
pkgver=1.1.0
|
|
pkgrel=1
|
|
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="ac855828c16f199bdbc45fbc227388d0 taskd-1.1.0.tar.gz
|
|
0e91d6e98a85f9ed42956c3220eca9f0 Path.cpp.patch
|
|
230518443e477b8181f3eb896355d5dc Directory.cpp.patch"
|
|
sha256sums="7b8488e687971ae56729ff4e2e5209ff8806cf8cd57718bfd7e521be130621b4 taskd-1.1.0.tar.gz
|
|
75449122cf7c3e0a4d1061534ca80442b73b766790a31ec4535094556e6b8212 Path.cpp.patch
|
|
90cffb295f47c2a613680e53432b4c72a58ed19c218a5e7744acb076e96ab003 Directory.cpp.patch"
|
|
sha512sums="df2349c354258fd1b014b1a9c78f68dc10c9e5a48357e282e8a760cf4e4aaf4d36486796ad094ee2b050e7506195b778e3316c90ef543a2f8242de313daa13aa taskd-1.1.0.tar.gz
|
|
51f9a384c3c76c2719f8dbc378fad0717b02e508dcf3d08fcabf2ebed002501bb7760723d49ee210f15ac65b077c35ea765c22ea8793ead04141bc6f6b2c8b3a Path.cpp.patch
|
|
fa3c8bec063119e7a8321a1be26e3c16ae1d1cbb34aa06becc29830f1e78180514a68981d9fd4c34b63755ab9afa2c5a295efeeea6dbce263bdf9c010d7c28aa Directory.cpp.patch"
|