diff options
author | David Robillard <d@drobilla.net> | 2022-06-12 13:58:26 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-12 17:52:03 -0400 |
commit | 0ed0823a25b4b3a9608af8ad5f601c0d2d72a122 (patch) | |
tree | 1f758f98a11e1f17260520b6fc4f82f1d736abc9 | |
parent | 25fbde95a51531b6e54e0e7f57c780fdc50814b2 (diff) | |
download | serd-0ed0823a25b4b3a9608af8ad5f601c0d2d72a122.tar.gz serd-0ed0823a25b4b3a9608af8ad5f601c0d2d72a122.tar.bz2 serd-0ed0823a25b4b3a9608af8ad5f601c0d2d72a122.zip |
Use a consistent project description everywhere
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | doc/c/Doxyfile | 2 | ||||
-rw-r--r-- | serd.pc.in | 2 | ||||
-rw-r--r-- | serd.ttl | 4 |
4 files changed, 10 insertions, 8 deletions
@@ -1,10 +1,12 @@ Serd ==== -Serd is a lightweight C library for RDF syntax which supports reading and -writing [Turtle][], [TriG][], [NTriples][], and [NQuads][]. Serd is suitable -for performance-critical or resource-limited applications, such as serialising -very large data sets or embedded systems. +Serd is a lightweight C library for working with RDF data. + +Serd can be used by high-performance or resource-limited applications to read +or write [Turtle][], [TriG][], [NTriples][], and [NQuads][]. The included +`serdi` tool can be used to efficiently process RDF documents in scripts or on +the command-line. Features -------- diff --git a/doc/c/Doxyfile b/doc/c/Doxyfile index a88f8ce8..600e0e94 100644 --- a/doc/c/Doxyfile +++ b/doc/c/Doxyfile @@ -1,5 +1,5 @@ PROJECT_NAME = Serd -PROJECT_BRIEF = "A lightweight library for RDF storage and serialisation" +PROJECT_BRIEF = "A lightweight C library for working with RDF data" QUIET = YES WARN_AS_ERROR = NO @@ -4,8 +4,8 @@ libdir=@LIBDIR@ includedir=@INCLUDEDIR@ Name: Serd +Description: A lightweight library for working with RDF Version: @SERD_VERSION@ -Description: Lightweight RDF syntax library Libs: -L${libdir} -l@LIB_SERD@ Libs.private: -lm Cflags: -I${includedir}/serd-@SERD_MAJOR_VERSION@ @@ -15,8 +15,8 @@ doap:name "Serd" ; doap:homepage <https://drobilla.net/software/serd> ; doap:license <http://opensource.org/licenses/isc> ; - doap:shortdesc "A high-performance RDF reader/writer" ; - doap:description "Serd is a lightweight high-performance C library for reading and writing RDF in the Turtle, NTriples, TriG, and NQuads syntaxes." ; + doap:shortdesc "Lightweight C library for working with RDF data" ; + doap:description "Serd is a lightweight C library for working with RDF data. Serd can be used by high-performance or resource-limited applications to read or write Turtle, TriG, NTriples, and NQuads. The included `serdi` tool can be used to efficiently process RDF documents in scripts or on the command-line." ; doap:created "2011-09-28"^^xsd:date ; doap:programming-language "C" ; doap:implements <http://www.w3.org/TR/n-quads/> , |