pkg config added

This commit is contained in:
Johan Ceupens 2013-12-20 04:12:57 +01:00
parent dee8dca748
commit a69b2a62d3
6 changed files with 30 additions and 0 deletions

1
s48/meta-gc/AUTHORS Normal file
View File

@ -0,0 +1 @@
Copyright (C) 2012-2013 Johan Ceuppens

1
s48/meta-gc/BLURB Normal file
View File

@ -0,0 +1 @@
meta-gc : a meta-circular memory system and garbage collector

2
s48/meta-gc/NEWS Normal file
View File

@ -0,0 +1,2 @@
version 0.1
* triple gc

1
s48/meta-gc/README Normal file
View File

@ -0,0 +1 @@
run meta.scm for the memchunk system, meta-gc.scm for the gc only

8
s48/meta-gc/packages.scm Normal file
View File

@ -0,0 +1,8 @@
(define-interface meta-gc-interface
(export
make-meta make-meta-gc))
(define-structure meta-gc
meta-gc-interface
(open scheme)
(files gc gc-sized-fast gc-sized meta-gc meta-hook meta stringutil))

17
s48/meta-gc/pkg-def.scm Normal file
View File

@ -0,0 +1,17 @@
(define-package "cavespider"
(0 1)
((install-lib-version (1 3 0)))
(write-to-load-script
`((config)
(load ,(absolute-file-name "packages.scm"
(get-directory 'scheme #f)))))
(install-file "README" 'doc)
(install-file "NEWS" 'doc)
(install-string (COPYING) "COPYING" 'doc)
(install-file "html-util.scm" 'scheme)
(install-file "file-util.scm" 'scheme)
(install-file "string-util.scm" 'scheme)
(install-file "util.scm" 'scheme)
(install-file "load.scm" 'scheme)
(install-file "packages.scm" 'scheme)
(install-file "client.scm" 'scheme))