guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/05: gnu: Add sratom.


From: Ricardo Wurmus
Subject: 03/05: gnu: Add sratom.
Date: Wed, 11 Feb 2015 22:43:02 +0000

rekado pushed a commit to branch master
in repository guix.

commit 5279eb6fceb56019e279514c9e5495c11afd194b
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Feb 10 10:21:30 2015 +0100

    gnu: Add sratom.
    
    * gnu/packages/audio.scm (sratom): New variable.
---
 gnu/packages/audio.scm |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index f83c5d2..1105ec2 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -31,6 +31,7 @@
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pulseaudio)  ;libsndfile, libsamplerate
   #:use-module (gnu packages python)
+  #:use-module (gnu packages rdf)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xml))
@@ -188,3 +189,30 @@ At its core, LV2 is a simple stable interface, accompanied 
by extensions which
 add functionality to support the needs of increasingly powerful audio
 software.")
     (license license:isc)))
+
+(define-public sratom
+  (package
+    (name "sratom")
+    (version "0.4.6")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "http://download.drobilla.net/sratom-";
+                                 version
+                                 ".tar.bz2"))
+             (sha256
+              (base32
+               "080jjiyxjnj7hf25844hd9rb01grvzz1rk8mxcdnakywmspbxfd4"))))
+    (build-system waf-build-system)
+    (arguments `(#:tests? #f)) ; no check target
+    (inputs
+     `(("lv2" ,lv2)
+       ("serd" ,serd)
+       ("sord" ,sord)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://drobilla.net/software/sratom/";)
+    (synopsis "Library for serialising LV2 atoms to/from RDF")
+    (description
+     "Sratom is a library for serialising LV2 atoms to/from RDF, particularly
+the Turtle syntax.")
+    (license license:isc)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]