>From ab8639959f1485d77e5056b41b41eadbad003605 Mon Sep 17 00:00:00 2001 From: rekado Date: Thu, 29 Jan 2015 23:09:19 +0100 Subject: [PATCH 2/5] gnu: Add sord. * gnu/packages/audio.scm (sord): New variable. --- gnu/packages/audio.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index e98b460..e6cfbdd 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -212,3 +212,27 @@ critical applications (e.g. converting many gigabytes of NTriples to Turtle), or situations where a simple reader/writer with minimal dependencies is ideal (e.g. in LV2 implementations or embedded applications).") (license license:isc))) + +(define-public sord + (package + (name "sord") + (version "0.12.2") + (source (origin + (method url-fetch) + (uri (string-append "http://download.drobilla.net/sord-" + version + ".tar.bz2")) + (sha256 + (base32 + "0rq7vafdv4vsxi6xk9zf5shr59w3kppdhqbj78185rz5gp9kh1dx")))) + (build-system waf-build-system) + (arguments `(#:tests? #f)) ; no check target + (inputs + `(("serd" ,serd))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://drobilla.net/software/sord/") + (synopsis "C library for storing RDF data in memory") + (description + "Sord is a lightweight C library for storing RDF data in memory.") + (license license:isc))) -- 2.1.0