From 02c4710c2c89cb693415dabe20f08d4e526ab6fd Mon Sep 17 00:00:00 2001 From: Nick White Date: Sun, 7 Aug 2011 15:16:23 +0100 Subject: Add web page, ready makefile --- doap.ttl | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 doap.ttl (limited to 'doap.ttl') diff --git a/doap.ttl b/doap.ttl new file mode 100644 index 0000000..16e7bfa --- /dev/null +++ b/doap.ttl @@ -0,0 +1,36 @@ +@prefix rdf: . +@prefix doap: . +@prefix foaf: . +@prefix : . + +:p a doap:Project; + doap:name "Getxbook"; + doap:shortdesc "A collection of tools to download books from websites"; + doap:homepage ; + doap:repository :repo; + doap:programming-language "C"; + doap:license ; + doap:release :v01, :v02, :v03; + doap:maintainer . + + a foaf:Person; + foaf:name "Nick White"; + foaf:homepage . + +:repo a doap:GitRepository; + doap:location . + +:v01 a doap:Version; + doap:revision "0.1"; + doap:created "2011-03-27"; + doap:file-release . + +:v02 a doap:Version; + doap:revision "0.2"; + doap:created "2011-04-11"; + doap:file-release . + +:v03 a doap:Version; + doap:revision "0.3"; + doap:created "2011-08-07"; + doap:file-release . -- cgit v1.2.3