Skip to content

Commit 0ed0823

Browse files
committed
Use a consistent project description everywhere
1 parent 25fbde9 commit 0ed0823

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Serd
22
====
33

4-
Serd is a lightweight C library for RDF syntax which supports reading and
5-
writing [Turtle][], [TriG][], [NTriples][], and [NQuads][]. Serd is suitable
6-
for performance-critical or resource-limited applications, such as serialising
7-
very large data sets or embedded systems.
4+
Serd is a lightweight C library for working with RDF data.
5+
6+
Serd can be used by high-performance or resource-limited applications to read
7+
or write [Turtle][], [TriG][], [NTriples][], and [NQuads][]. The included
8+
`serdi` tool can be used to efficiently process RDF documents in scripts or on
9+
the command-line.
810

911
Features
1012
--------

doc/c/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT_NAME = Serd
2-
PROJECT_BRIEF = "A lightweight library for RDF storage and serialisation"
2+
PROJECT_BRIEF = "A lightweight C library for working with RDF data"
33

44
QUIET = YES
55
WARN_AS_ERROR = NO

serd.pc.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ libdir=@LIBDIR@
44
includedir=@INCLUDEDIR@
55

66
Name: Serd
7+
Description: A lightweight library for working with RDF
78
Version: @SERD_VERSION@
8-
Description: Lightweight RDF syntax library
99
Libs: -L${libdir} -l@LIB_SERD@
1010
Libs.private: -lm
1111
Cflags: -I${includedir}/serd-@SERD_MAJOR_VERSION@

serd.ttl

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
doap:name "Serd" ;
1616
doap:homepage <https://drobilla.net/software/serd> ;
1717
doap:license <http://opensource.org/licenses/isc> ;
18-
doap:shortdesc "A high-performance RDF reader/writer" ;
19-
doap:description "Serd is a lightweight high-performance C library for reading and writing RDF in the Turtle, NTriples, TriG, and NQuads syntaxes." ;
18+
doap:shortdesc "Lightweight C library for working with RDF data" ;
19+
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." ;
2020
doap:created "2011-09-28"^^xsd:date ;
2121
doap:programming-language "C" ;
2222
doap:implements <http://www.w3.org/TR/n-quads/> ,

0 commit comments

Comments
 (0)