~ chicken-core (master) /setup.defaults


 1;;;; setup.defaults - defaults for chicken-install -*- Scheme -*-
 2
 3
 4;; version-number of the defaults file - checked by "chicken-install"
 5;  when defaults are loaded
 6
 7(version 2)
 8
 9
10;; list of locations (eggs stored in the local fileystem)
11;
12; (location DIRECTORY ...)
13;
14; Note that these override eggs from servers.
15
16
17;; list of servers in the order in which they will be processed
18;
19; (server URL ...)
20;
21; URL may be an alias (see below) or a real URL.
22
23; TEMPORARY DISABLED
24;(server "kitten-technologies")
25(server "call-cc")
26
27
28;; extensions-mappings
29;
30; (map (EXTENSIONNAME ... -> OTHEREXTENSIONNAME ...))
31
32(map (srfi-4 ->))
33(map (r7rs ->))
34
35
36;; aliases for servers
37;
38; (alias (NAME REALNAME) ...)
39
40(alias
41 ("call-cc" "http://code.call-cc.org/cgi-bin/henrietta.cgi")
42 ("kitten-technologies" "http://chicken.kitten-technologies.co.uk/henrietta.cgi"))
43
44
45;; overrides
46;
47; (override (NAME VERSION) ...)
48;
49; or:
50;
51; (override FILENAME)
52
53
54;; hack
55;
56; (hack EXPR)
57;
58;   EXPR should evaluate to a procedure of the type, where the
59;   procedure is of type EGGNAME DEPENDENCIES -> DEPENDENCIES' and
60;   may modify the dependencies-list of an arbitrary egg. All
61;   hack procedures are invoked in the order given here
Trap