diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-08-13 13:19:04 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-08-13 13:19:49 +0200 |
commit | 86f14fe466d97b1746442e0bd1791358bbf08e97 (patch) | |
tree | 0529a70802fc593416361c80f05e7636182581f3 /main/taskd | |
parent | 74474fbac793a1387e938c8a77d95548d9e402d7 (diff) | |
download | aports-86f14fe466d97b1746442e0bd1791358bbf08e97.tar.bz2 aports-86f14fe466d97b1746442e0bd1791358bbf08e97.tar.xz |
main/taskd: move from testing
Diffstat (limited to 'main/taskd')
-rw-r--r-- | main/taskd/APKBUILD | 57 | ||||
-rw-r--r-- | main/taskd/Directory.cpp.patch | 10 | ||||
-rw-r--r-- | main/taskd/Path.cpp.patch | 18 |
3 files changed, 85 insertions, 0 deletions
diff --git a/main/taskd/APKBUILD b/main/taskd/APKBUILD new file mode 100644 index 0000000000..69630b63db --- /dev/null +++ b/main/taskd/APKBUILD @@ -0,0 +1,57 @@ +# Contributor: ScrumpyJack <scrumpyjack@me.com> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=taskd +pkgver=1.1.0 +pkgrel=2 +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 $pkgname-pki" +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 +} + +pki () { + pkgdesc="Tools for taskd PKI management" + depends="taskd gnutls-utils" + mkdir -p "$subpkgdir"/usr/share/taskd + mv "${_builddir}/pki" "$subpkgdir"/usr/share/taskd || 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" diff --git a/main/taskd/Directory.cpp.patch b/main/taskd/Directory.cpp.patch new file mode 100644 index 0000000000..4c53a08bff --- /dev/null +++ b/main/taskd/Directory.cpp.patch @@ -0,0 +1,10 @@ +--- taskd-1.0.0/src/Directory.cpp ++++ taskd-1.0.0/src/Directory.cpp.changed +@@ -34,6 +34,7 @@ + #include <errno.h> + #include <stdlib.h> + #include <Directory.h> ++#include <limits.h> + + #ifdef SOLARIS + #include <limits.h> diff --git a/main/taskd/Path.cpp.patch b/main/taskd/Path.cpp.patch new file mode 100644 index 0000000000..018a2029ee --- /dev/null +++ b/main/taskd/Path.cpp.patch @@ -0,0 +1,18 @@ +--- taskd-1.0.0/src/Path.cpp ++++ taskd-1.0.0/src/Path.cpp.changed +@@ -37,6 +37,15 @@ + #include <Directory.h> + #include <Path.h> + ++/* fixes build with musl libc */ ++#ifndef GLOB_TILDE ++#define GLOB_TILDE 0 ++#endif ++ ++#ifndef GLOB_BRACE ++#define GLOB_BRACE 0 ++#endif ++ + //////////////////////////////////////////////////////////////////////////////// + std::ostream& operator<< (std::ostream& out, const Path& path) + { |