2004-05-17 16:11:17 -04:00
|
|
|
;; Package definition for the installation library itself.
|
|
|
|
|
|
|
|
;; Template for scsh-install-pkg script, must be plugged with the
|
|
|
|
;; directory containing the Scheme code.
|
|
|
|
(define scsh-install-pkg-template #<<END
|
|
|
|
#!/bin/sh
|
|
|
|
exec scsh -le ~a/load.scm -o install-lib -e install-main -s "$0" "$@"
|
|
|
|
!#
|
|
|
|
|
|
|
|
END
|
|
|
|
)
|
|
|
|
|
2004-07-08 08:12:31 -04:00
|
|
|
(define-package "install-lib" (1 1 2)
|
2004-06-13 13:49:52 -04:00
|
|
|
((options (bindir "Destination directory for executables" "<dir>" #t #f
|
|
|
|
,(bin-dir) ,identity ,identity)))
|
2004-05-17 16:11:17 -04:00
|
|
|
|
2004-06-13 13:49:52 -04:00
|
|
|
;; Install "package" part (doc & Scheme code)
|
|
|
|
(install-file "doc/install-lib.pdf" 'doc "pdf")
|
|
|
|
(install-files '("scheme/install-lib.scm"
|
|
|
|
"scheme/install-lib-version.scm"
|
|
|
|
"scheme/install-lib-module.scm")
|
|
|
|
'scheme)
|
|
|
|
(write-to-load-script
|
|
|
|
`((config)
|
|
|
|
(load ,(absolute-file-name "install-lib-module.scm"
|
|
|
|
(get-directory 'scheme #f)))
|
|
|
|
(user)))
|
|
|
|
|
|
|
|
;; Install "program" part (scsh-install-pkg script).
|
2004-05-17 16:11:17 -04:00
|
|
|
(let ((bindir (get-option-value 'bindir)))
|
|
|
|
(if (or (get-option-value 'dry-run) (get-option-value 'verbose))
|
|
|
|
(format #t "creating scsh-install-pkg script in ~a\n" bindir))
|
|
|
|
|
|
|
|
(if (not (get-option-value 'dry-run))
|
2004-06-13 13:49:52 -04:00
|
|
|
(let ((wrapper-name (absolute-file-name "scsh-install-pkg" bindir)))
|
|
|
|
|
|
|
|
(with-errno-handler
|
|
|
|
((errno packet)
|
|
|
|
(else ((display-error-and-exit "cannot create wrapper script "
|
|
|
|
wrapper-name ":\n "
|
|
|
|
(first packet)))))
|
|
|
|
|
|
|
|
(create-directory&parents bindir #o755)
|
|
|
|
(call-with-output-file wrapper-name
|
|
|
|
(lambda (port)
|
|
|
|
(format port scsh-install-pkg-template (get-directory 'base #f))
|
|
|
|
(set-file-mode port #o755))))))))
|