Changed to new package system.
This commit is contained in:
parent
5e36d5f02e
commit
bb0a48574a
s48/srfi-10
|
@ -1 +1 @@
|
||||||
Taylor Campbell
|
Copyright (c) 2003 Taylor Campbell
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
version 0.0
|
||||||
|
* New package system.
|
|
@ -1,6 +0,0 @@
|
||||||
;;; This file is part of the Scheme Untergrund Library.
|
|
||||||
|
|
||||||
;; This code, written by Taylor Campbell, is in the public domain.
|
|
||||||
|
|
||||||
(define-interface srfi-10-interface
|
|
||||||
(export define-reader-constructor))
|
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
;; This code, written by Taylor Campbell, is in the public domain.
|
;; This code, written by Taylor Campbell, is in the public domain.
|
||||||
|
|
||||||
|
(define-interface srfi-10-interface
|
||||||
|
(export define-reader-constructor))
|
||||||
|
|
||||||
(define-structure srfi-10 srfi-10-interface
|
(define-structure srfi-10 srfi-10-interface
|
||||||
(open scheme
|
(open scheme
|
||||||
reading
|
reading
|
|
@ -0,0 +1,10 @@
|
||||||
|
(define-package "srfi-10"
|
||||||
|
(0 0)
|
||||||
|
()
|
||||||
|
(install-file "load.scm" 'base)
|
||||||
|
(install-file "README" 'doc)
|
||||||
|
(install-file "NEWS" 'doc)
|
||||||
|
(install-string (COPYING) "COPYING" 'doc)
|
||||||
|
(install-file "srfi-10.scm" 'scheme)
|
||||||
|
(install-file "test/test.scm" 'scheme)
|
||||||
|
(install-file "test/pi.scm" 'scheme))
|
Loading…
Reference in New Issue