[plt-scheme] setup-plt
Hi,
I have developed a library for plt-scheme that contains only scheme
code. It contains a simple info.ss file. File "info.ss" contains the
following:
(module info (lib "infotab.ss" "setup")
(define name "abc")
(define primary-file "abc.ss"))
To install this package I do the following:
mkdir $PLTCOLLECTS/abc
cp *.ss $PLTCOLLECTS/abc
mzc --collection-zos abc
I know I should be installing this using setup-plt. Can anybody provide
me simple directions on how compile my library into a plt file so that I
can install it using something like:
setup-plt -a srs.plt
where srs.plt is the name of the file that I need to create. I have
tried to find an example of how to do this but I have not been successful.
Thanks,
Arend