- added layouts, which means:
- removed query functions, which do not belong to the installation library anyway, and which will have to be redone for layouts, - replaced functions "package-installation-dir" and "package-installation-staging-dir" by "get-directory", - changed "install-file" & friends for layouts, - added "install-directory-contents".
This commit is contained in:
parent
0d791e3332
commit
d6e62d6c6e
|
@ -1,5 +1,5 @@
|
||||||
;;; Installation library for scsh modules.
|
;;; Installation library for scsh modules.
|
||||||
;;; $Id: install-lib-module.scm,v 1.2 2003/12/14 12:33:59 michel-schinz Exp $
|
;;; $Id: install-lib-module.scm,v 1.3 2003/12/14 14:43:18 michel-schinz Exp $
|
||||||
|
|
||||||
;;; Interfaces
|
;;; Interfaces
|
||||||
|
|
||||||
|
@ -11,21 +11,16 @@
|
||||||
version>?
|
version>?
|
||||||
version=?
|
version=?
|
||||||
|
|
||||||
installed-packages
|
|
||||||
active-packages
|
|
||||||
installed-packages&versions
|
|
||||||
active-packages&versions
|
|
||||||
active-version
|
|
||||||
|
|
||||||
(define-package :syntax)
|
(define-package :syntax)
|
||||||
|
|
||||||
install-file
|
install-file
|
||||||
install-files
|
install-files
|
||||||
install-directory
|
install-directory
|
||||||
install-directories
|
install-directories
|
||||||
|
install-directory-contents
|
||||||
|
|
||||||
|
get-directory
|
||||||
|
|
||||||
package-installation-dir
|
|
||||||
package-installation-staging-dir
|
|
||||||
with-optional-part?
|
with-optional-part?
|
||||||
is-running-dry?
|
is-running-dry?
|
||||||
|
|
||||||
|
@ -40,5 +35,6 @@
|
||||||
srfi-1
|
srfi-1
|
||||||
srfi-9
|
srfi-9
|
||||||
srfi-13
|
srfi-13
|
||||||
srfi-37)
|
srfi-37
|
||||||
|
configure)
|
||||||
(files install-lib))
|
(files install-lib))
|
||||||
|
|
Loading…
Reference in New Issue