;;;; setup-helper.setup -*- Hen -*- (compile -s -O3 -d1 setup-helper-mod.scm -j setup-helper-mod) (compile -s -O3 -d0 setup-helper-mod.import.scm) (install-extension 'setup-helper-mod '("setup-helper-mod.so" "setup-helper-mod.import.so") '((version "1.4.0"))) ;Place along default include path (handle-exceptions exn ;Ignore any exceptions but remind user about problem. (begin (warning "cannot copy to Chicken Home: must use CHICKEN_INCLUDE_PATH when installing an egg using \"setup-helper\"") ) ;(install-in-home "setup-helper.scm") (when (setup-install-mode) (copy-file "setup-helper.scm" (chicken-home))) ) ;Put a copy in the repo as well (install-extension 'setup-helper '("setup-helper.scm") '((version "1.4.0")))