diff options
author | David Robillard <d@drobilla.net> | 2009-12-09 01:37:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-12-09 01:37:38 +0000 |
commit | 4db8e50ad74080e731dce510ea15bf7fe3994f22 (patch) | |
tree | 34695de9875eb2a6a2faef0fbcfd184282d6d8ec /raul.ttl | |
parent | 3164c2f2a3e5d8fde82427dc5a7e0857e1c8c013 (diff) | |
download | raul-4db8e50ad74080e731dce510ea15bf7fe3994f22.tar.gz raul-4db8e50ad74080e731dce510ea15bf7fe3994f22.tar.bz2 raul-4db8e50ad74080e731dce510ea15bf7fe3994f22.zip |
Raul 0.6.0.
Drop glibmm dependency to glib dependency.
Add --test configure option.
Add RDF description.
Bump library version number.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2297 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul.ttl')
-rw-r--r-- | raul.ttl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/raul.ttl b/raul.ttl new file mode 100644 index 0000000..8cce60a --- /dev/null +++ b/raul.ttl @@ -0,0 +1,32 @@ +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . + +<http://drobilla.net/software/raul> a doap:Project ; + doap:name "Raul" ; + doap:homepage <http://drobilla.net/software/raul/> ; + doap:bug-database <http://dev.drobilla.net/> ; + doap:license <http://usefulinc.com/doap/licenses/gpl> ; + doap:developer [ + a foaf:Person ; + foaf:name "Dave Robillard" ; + foaf:homepage <http://drobilla.net/> ; + rdfs:seeAlso <http://drobilla.net/drobilla.rdf> + ] ; + doap:programming-language "C", "C++" ; + doap:repository [ + a doap:SVNRepository ; + doap:browse <http://dev.drobilla.net/browser/trunk/raul> ; + doap:location <http://svn.drobilla.net/lad/trunk/raul> + ] ; + doap:version [ + doap:revision "0.6.0" ; + doap:created "2009-12-08" ; + doap:file-release <http://download.drobilla.net/raul-0.6.0.tar.bz2> + ] ; + doap:description """ +Raul (Realtime Audio Utility Library) is a lightweight C++ convenience +library for realtime programming, with a bias towards audio applications on +POSIX systems. +""" . |