package/serd: new package
Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Tested-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
b501e1a43d
commit
e55f57b3d3
@ -1336,6 +1336,7 @@ F: package/python-tomli/
|
||||
F: package/python-weasyprint/
|
||||
F: package/python-yarl/
|
||||
F: package/python-zopfli/
|
||||
F: package/serd/
|
||||
F: package/zchunk/
|
||||
|
||||
N: James Knight <james.knight@collins.com>
|
||||
|
@ -1699,6 +1699,7 @@ menu "JSON/XML"
|
||||
source "package/rapidjson/Config.in"
|
||||
source "package/rapidxml/Config.in"
|
||||
source "package/raptor/Config.in"
|
||||
source "package/serd/Config.in"
|
||||
source "package/tinyxml/Config.in"
|
||||
source "package/tinyxml2/Config.in"
|
||||
source "package/valijson/Config.in"
|
||||
|
8
package/serd/Config.in
Normal file
8
package/serd/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_SERD
|
||||
bool "serd"
|
||||
help
|
||||
Serd is a lightweight C library for RDF syntax which
|
||||
supports reading and writing Turtle, TriG, NTriples, and
|
||||
NQuads.
|
||||
|
||||
https://drobilla.net/software/serd.html
|
4
package/serd/serd.hash
Normal file
4
package/serd/serd.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# Locally calculated after checking signature
|
||||
# http://download.drobilla.net/serd-0.30.10.tar.bz2.sig
|
||||
sha256 affa80deec78921f86335e6fc3f18b80aefecf424f6a5755e9f2fa0eb0710edf serd-0.30.10.tar.bz2
|
||||
sha256 e06562d6bcf0341b2ac2ad0f0ca36801d2ebf388d5ef297011625e4c36e963f0 COPYING
|
20
package/serd/serd.mk
Normal file
20
package/serd/serd.mk
Normal file
@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# serd
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SERD_VERSION = 0.30.10
|
||||
SERD_SITE = https://download.drobilla.net
|
||||
SERD_SOURCE = serd-$(SERD_VERSION).tar.bz2
|
||||
SERD_LICENSE = ISC
|
||||
SERD_LICENSE_FILES = COPYING
|
||||
SERD_INSTALL_STAGING = YES
|
||||
|
||||
SERD_CONF_OPTS += --largefile --no-coverage
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
SERD_CONF_OPTS += --static --no-shared --static-progs
|
||||
endif
|
||||
|
||||
$(eval $(waf-package))
|
Loading…
Reference in New Issue
Block a user