Hi, "John Trammell" <[EMAIL PROTECTED]> writes:
> I have a guile issue and a scheme issue I'm hoping you can help me > with. My guile issue is that I've built a rudimentary module > (following the code in > http://www.gnu.org/software/guile/manual/html_node/Creating-Guile-Modules.html) > that I'd like to tar up and make available as a GPL'ed installable > package. Can any of you point me to documentation or an example of > how to do that? I have something cobbled together with a Makefile but > I'd like to think there's a more sophisticated solution out there. Dale Smith on IRC noted that Martin Grabmüller once wrote a skeleton for Guile extensions written in C: http://uebb.cs.tu-berlin.de/~magr/guile/guile-extension-0.0.1.tar.gz It has a `convert.sh' script that automatically sets up the basic package environment for you. For instance, running "./convert.sh foo" creates a `guile-foo' package, with C stubs in `foo.c' and `foo.h'. There are also Guile bindings for many libraries that you could use as a starting point, although it won't be as straightforward as running a script. Thanks, Ludovic.
