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