~ chicken-core (chicken-5) /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(server "kitten-technologies")
24(server "call-cc")
25
26
27;; extensions-mappings
28;
29; (map (EXTENSIONNAME ... -> OTHEREXTENSIONNAME ...))
30
31(map (srfi-4 ->))
32
33
34;; aliases for servers
35;
36; (alias (NAME REALNAME) ...)
37
38(alias 
39 ("call-cc" "http://code.call-cc.org/cgi-bin/henrietta.cgi")
40 ("kitten-technologies" "http://chicken.kitten-technologies.co.uk/henrietta.cgi"))
41
42
43;; overrides
44;
45; (override (NAME VERSION) ...)
46;
47; or:
48;
49; (override FILENAME)
50
51
52;; hack
53;
54; (hack EXPR)
55;
56;   EXPR should evaluate to a procedure of the type, where the 
57;   procedure is of type EGGNAME DEPENDENCIES -> DEPENDENCIES' and
58;   may modify the dependencies-list of an arbitrary egg. All
59;   hack procedures are invoked in the order given here
Trap