diff options
author | David Robillard <d@drobilla.net> | 2007-11-15 02:16:24 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-11-15 02:16:24 +0000 |
commit | 85bb5ef9bf1a44fa58f64e16e955d980a64799f6 (patch) | |
tree | 9a4690867d3952cd45ef2e25d92a16cd05cc26fc | |
parent | 1b52b18276815dd14d216655af39cf28383451dd (diff) | |
download | lilv-85bb5ef9bf1a44fa58f64e16e955d980a64799f6.tar.gz lilv-85bb5ef9bf1a44fa58f64e16e955d980a64799f6.tar.bz2 lilv-85bb5ef9bf1a44fa58f64e16e955d980a64799f6.zip |
Added DOAP description.
git-svn-id: http://svn.drobilla.net/lad/slv2@915 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | slv2.ttl | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5edec93..75b5a85 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ AUTOMAKE_OPTIONS = foreign -EXTRA_DIST = COPYING INSTALL +EXTRA_DIST = COPYING INSTALL slv2.ttl if HAVE_DOXYGEN DOC_DIR = doc diff --git a/slv2.ttl b/slv2.ttl new file mode 100644 index 0000000..440bf7d --- /dev/null +++ b/slv2.ttl @@ -0,0 +1,26 @@ +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix : <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . + +[] + a :Project; + :name "SLV2"; + :shortname "SLV2"; + :shortdesc "Library for simple use of LV2 plugins"; + :homepage <http://drobilla.net/software/slv2>; + :download-page <http://download.drobilla.net>; + :bug-database <http://dev.drobilla.net/query?status=new&status=assigned&status=reopened&component=SLV2&order=priority>; + :programming-language "C", "Turtle"; + :license <http://usefulinc.com/doap/licenses/gpl>; + :developer [ + a foaf:Person; + foaf:name "Dave Robillard"; + foaf:homepage <http://drobilla.net>; + foaf:mbox_sha1sum "253b3c58086250260bac1232d744d150274ad308" + ]; + :repository [ + a :SVNRepository; + :browse <http://dev.drobilla.net/browser/slv2>; + :location <http://svn.drobilla.net/lad/slv2> + ] . + |