Last change
on this file since 20021 was
20021,
checked in by Ivan Raikov, 10 years ago
|
digraph: removing eggdoc-related stuff
|
File size:
461 bytes
|
Line | |
---|
1 | ;;;; -*- Hen -*- |
---|
2 | |
---|
3 | (define (dynld-name fn) |
---|
4 | (make-pathname #f fn ##sys#load-dynamic-extension)) |
---|
5 | |
---|
6 | (compile -O2 -d0 -s digraph.scm -j digraph) |
---|
7 | (compile -O2 -d0 -s digraph.import.scm) |
---|
8 | |
---|
9 | (install-extension |
---|
10 | |
---|
11 | ; Name of your extension: |
---|
12 | 'digraph |
---|
13 | |
---|
14 | ; Files to install for your extension: |
---|
15 | `(,(dynld-name "digraph") ,(dynld-name "digraph.import") ) |
---|
16 | |
---|
17 | ; Assoc list with properties for your extension: |
---|
18 | `((version 1.12) |
---|
19 | (documentation "digraph.html") |
---|
20 | )) |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.