Changed to new package system.

This commit is contained in:
Anthony Carrico 2004-03-10 18:23:48 +00:00
parent 5e36d5f02e
commit bb0a48574a
5 changed files with 16 additions and 7 deletions

View File

@ -1 +1 @@
Taylor Campbell
Copyright (c) 2003 Taylor Campbell

2
s48/srfi-10/NEWS Normal file
View File

@ -0,0 +1,2 @@
version 0.0
* New package system.

View File

@ -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))

View File

@ -2,6 +2,9 @@
;; 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
(open scheme
reading

10
s48/srfi-10/pkg-def.scm Normal file
View File

@ -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))