1 | # -*- Mode: n3 -*- |
---|
2 | |
---|
3 | @prefix abcl: <https://abcl.org> . |
---|
4 | @prefix doap: <http://usefulinc.com/ns/doap#> . |
---|
5 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
---|
6 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
---|
7 | |
---|
8 | <> a doap:Project . |
---|
9 | |
---|
10 | <> rdfs:seeAlso <urn:abcl.not.org> . |
---|
11 | <> rdfs:seeAlso <urn:not.org> . |
---|
12 | |
---|
13 | @prefix dc: <http://purl.org/dc/elements/1.1/> . |
---|
14 | <> dc:modified "03-DEC-2012" . |
---|
15 | |
---|
16 | <> dc:version "abcl-1.1.0" . |
---|
17 | <> abcl:releaseCandidate "rc-2" . |
---|
18 | |
---|
19 | <https://abcl.org/index#doap> |
---|
20 | a doap:Project ; |
---|
21 | doap:label "Armed Bear Common Lisp" ; |
---|
22 | doap:download <http://common-lisp.net/project/armedbear/> ; |
---|
23 | doap:shortname "ABCL" ; |
---|
24 | doap:contributors """( ehu easye v-ille astalla rudi peter)""" . |
---|
25 | |
---|
26 | <https://abcl.org/index#doap> |
---|
27 | doap:language |
---|
28 | "Common Lisp", "Java", "Ant", "Bourne Shell Script", "Windows Batch Script" . |
---|
29 | |
---|
30 | <https://abcl.org/index#doap> |
---|
31 | doap:license [ |
---|
32 | dc:license <http://usefulinc.com/doap/licenses/gplv2> , |
---|
33 | <http://usefulinc.com/doap/licenses/gplv2-classpath-exception> ; |
---|
34 | ] . |
---|
35 | |
---|
36 | doap:Project rdfs:seeAlso |
---|
37 | <http://trac.common-lisp.net/armedbear/timeline> , |
---|
38 | <http://trac.common-lisp.net/armedbear/wiki> , |
---|
39 | <http://code.google.com/p/abcl-dynamic-install/> . |
---|
40 | |
---|
41 | |
---|