Package Details: libcoap-git r1628.a5ffdf3-2

Git Clone URL: https://aur.archlinux.org/libcoap-git.git (read-only, click to copy)
Package Base: libcoap-git
Description: C-Implementation of CoAP
Upstream URL: https://libcoap.net/
Licenses: GPL2, BSD2
Conflicts: libcoap
Provides: libcoap
Submitter: Xandaros
Maintainer: Xandaros
Last Packager: Xandaros
Votes: 2
Popularity: 0.000000
First Submitted: 2015-08-26 15:40 (UTC)
Last Updated: 2019-06-11 18:39 (UTC)

Dependencies (3)

Required by (2)

Sources (1)

Latest Comments

soenke commented on 2022-01-11 13:42 (UTC)

GitHub no longer allows unauthenticated git (https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git).

Source git URL should be changed (e.g. git+https:// ):

diff --git i/PKGBUILD w/PKGBUILD
index 98a82af..344bb74 100644
--- i/PKGBUILD
+++ w/PKGBUILD
@@ -9,7 +9,7 @@ license=('BSD2' 'GPL2')
makedepends=('git' 'doxygen' 'asciidoc')
provides=('libcoap')
conflicts=('libcoap')
-source=("$_gitname::git://github.com/obgm/libcoap.git")
+source=("$_gitname::git+https://github.com/obgm/libcoap.git")
md5sums=('SKIP')

pkgver() {

Xandaros commented on 2019-06-11 18:40 (UTC) (edited on 2019-06-11 18:40 (UTC) by Xandaros)

Added doxgen and asciidoc as make dependencies. Thanks for pointing it out.

smrqdt commented on 2019-06-09 07:42 (UTC) (edited on 2019-06-09 07:43 (UTC) by smrqdt)

configure: WARNING: ==> You want to build the manpages, but a2x was not found!

configure: error: ==> Install the package that contains a2x (mostly asciidoc) or disable the build of the manpages using '--disable-manpages'.

asciidoc should be a make dependency

davvore33 commented on 2019-01-05 19:29 (UTC)

either you compile without the doc ("--disable-doxygen") or you put doxygen as dep

simonvik commented on 2017-05-24 06:49 (UTC)

Hi! I made a new "package" based on your PKGBUILD that builds against the DTLS branch: https://aur.archlinux.org/packages/libcoap-dtls-git/ It seems like they wrote their own Makefile.in (?!?!) for the tinydtls-part and that one ignores DESTDIR completely. Should we try to merge these packages in some way or keep one for the dtls-part and one from master? Think that the usage of this package will go up as IKEA now uses coap over dtls for their lamps.

kamaradclimber commented on 2017-05-01 08:10 (UTC)

Hello, I'm trying to install the tlds branch of libcoap as described on https://home-assistant.io/components/tradfri/. Would it be possible to allow this package to be built for armv7h architecture as well ('any' would be probably fine)? Also adding > git submodule update --init --recursive before ./configure would allow to be built more easily for this setup. Thanks