Changed to new package system.

This commit is contained in:
Anthony Carrico 2004-03-10 16:25:15 +00:00
parent d0d0fbdd7f
commit ebf23b0789
5 changed files with 25 additions and 15 deletions

View File

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

2
s48/banana/NEWS Normal file
View File

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

View File

@ -43,3 +43,18 @@
;; Generally just for debugging or manual testing.
(prettify-byte (proc (:exact-integer) :string))
(prettify-byte-vector (proc (:value) :string))))
(define-structures ((banana banana-interface)
(banana-extras banana-extras-interface))
(open scheme
define-record-types
conditions
exceptions
signals
handle
bitwise
byte-vectors
ascii
srfi-1
srfi-6)
(files banana))

View File

@ -1,14 +0,0 @@
(define-structures ((banana banana-interface)
(banana-extras banana-extras-interface))
(open scheme
define-record-types
conditions
exceptions
signals
handle
bitwise
byte-vectors
ascii
srfi-1
srfi-6)
(files banana))

7
s48/banana/pkg-def.scm Normal file
View File

@ -0,0 +1,7 @@
(define-package "banana"
(0 1)
()
(install-file "load.scm" 'base)
(install-file "README" 'doc)
(install-string (COPYING) "COPYING" 'doc)
(install-file "banana.scm" 'scheme))