Changed to new package system.
This commit is contained in:
parent
d0d0fbdd7f
commit
ebf23b0789
|
@ -1 +1 @@
|
||||||
Taylor Campbell
|
Copyright (c) 2003 Taylor Campbell
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
version 0.1
|
||||||
|
* New package system.
|
|
@ -43,3 +43,18 @@
|
||||||
;; Generally just for debugging or manual testing.
|
;; Generally just for debugging or manual testing.
|
||||||
(prettify-byte (proc (:exact-integer) :string))
|
(prettify-byte (proc (:exact-integer) :string))
|
||||||
(prettify-byte-vector (proc (:value) :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))
|
|
@ -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))
|
|
|
@ -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))
|
Loading…
Reference in New Issue