Changed to new package system.

This commit is contained in:
Anthony Carrico 2004-03-10 19:09:40 +00:00
parent 16a70f3b2c
commit fece670ed4
5 changed files with 24 additions and 9 deletions

View File

@ -1 +1,2 @@
Martin Gasbichler, Oleg Kiselyov
Copyright (c) 2001 Oleg Kiselyov
Copyright (c) 2003 Martin Gasbichler

5
scsh/treaps/NEWS Normal file
View File

@ -0,0 +1,5 @@
version 0.1
* New package system.
version 0.0 2001-10-26
* Upstream from Oleg Kiselyov

View File

@ -13,3 +13,10 @@
treap-for-each-ascending
treap-for-each-descending
treap-debugprint debugprint))
(define-structure treaps treaps-interface
(open scheme
srfi-9
srfi-23
srfi-27)
(files treap))

View File

@ -1,6 +0,0 @@
(define-structure treaps treaps-interface
(open scheme
srfi-9
srfi-23
srfi-27)
(files treap))

8
scsh/treaps/pkg-def.scm Normal file
View File

@ -0,0 +1,8 @@
(define-package "treaps"
(0 1)
()
(install-file "load.scm" 'base)
(install-file "README" 'doc)
(install-file "NEWS" 'doc)
(install-string (COPYING) "COPYING" 'doc)
(install-file "treap.scm" 'scheme))