diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-03-25 20:55:50 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-26 01:20:59 +0100 |
commit | 1876fe8971d38a74c717a130bb96e064d902d76c (patch) | |
tree | 8b4e5150a9bad5c321adaada1d6e8e16bcdc51d0 /main/taskd | |
parent | ef16b9ff4c0244ec630279dfb18711da2e68ddd0 (diff) | |
download | aports-1876fe8971d38a74c717a130bb96e064d902d76c.tar.bz2 aports-1876fe8971d38a74c717a130bb96e064d902d76c.tar.xz |
main/taskd: fix abuild, create user and group during build
Currently taskd FTBFS if user 'taskd' does not exist in the builder.
Adding pkgusers and pkggroups to create this user and group during
the build.
Diffstat (limited to 'main/taskd')
-rw-r--r-- | main/taskd/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/taskd/APKBUILD b/main/taskd/APKBUILD index 3eb7100754..872f7c63cb 100644 --- a/main/taskd/APKBUILD +++ b/main/taskd/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=taskd pkgver=1.1.0 -pkgrel=3 +pkgrel=4 pkgdesc="Taskserver synchronises taskwarrior across multiple clients" url="http://taskwarrior.org" arch="all" @@ -11,6 +11,8 @@ license="MIT" depends="" depends_dev="gnutls-dev util-linux-dev" makedepends="$depends_dev cmake" +pkgusers="taskd" +pkggroups="taskd" install="$pkgname.pre-install" subpackages="$pkgname-doc $pkgname-pki" source="http://taskwarrior.org/download/${pkgname}-${pkgver}.tar.gz |