Re: request for help with module build/install

2015-07-05 Thread Jan Wedekind
Hmm ok. Also the timestamp of the *.go file needs to be more recent than the *.scm source. But that looked ok in the "ls" output you posted. On July 5, 2015 2:05:33 PM GMT+01:00, Matt Wette wrote: >Ah, thanks. The cached files under the user directory are .scm.go, but >the ones in the global a

Re: request for help with module build/install

2015-07-05 Thread Matt Wette
Ah, thanks. The cached files under the user directory are .scm.go, but the ones in the global are .go. On Jul 5, 2015, at 1:42 AM, Jan Wedekind wrote: > I think the file names should be *.go (not *.scm.go). > > On July 5, 2015 3:19:47 AM GMT+01:00, Matt Wette > wrote: >> On Jul 1, 2015, at

Re: request for help with module build/install

2015-07-05 Thread Jan Wedekind
I think the file names should be *.go (not *.scm.go). On July 5, 2015 3:19:47 AM GMT+01:00, Matt Wette wrote: >On Jul 1, 2015, at 8:12 PM, Nala Ginrut wrote: >> For .scm files, you may put it to (%site-dir) >> MOD_PATH := $(shell guile -c "(display (%site-dir))") >> >> For compiled .go, you ma

Re: request for help with module build/install

2015-07-04 Thread Matt Wette
On Jul 1, 2015, at 8:12 PM, Nala Ginrut wrote: > For .scm files, you may put it to (%site-dir) > MOD_PATH := $(shell guile -c "(display (%site-dir))") > > For compiled .go, you may put it to (%site-ccache-dir) here: > COMPILED_MOD := $(shell guile -c "(display (%site-ccache-dir))") > > And it wo

Re: request for help with module build/install

2015-07-02 Thread Matt Wette
Thanks all. I think I can find a solution now. On Jul 2, 2015, at 1:04 AM, Chaos Eternal wrote: > Hi, > > The project guile-scsh has a simple install script, hope that helps. > > https://github.com/ChaosEternal/guile-scsh > > On Thu, Jul 2, 2015 at 8:56 AM, Matt Wette wrote: >> Hi Folks, >>

Re: request for help with module build/install

2015-07-02 Thread Chaos Eternal
Hi, The project guile-scsh has a simple install script, hope that helps. https://github.com/ChaosEternal/guile-scsh On Thu, Jul 2, 2015 at 8:56 AM, Matt Wette wrote: > Hi Folks, > > I have developed a set of guile modules. I'd like to be able to generate a > package hosted on, say, github.com

Re: request for help with module build/install

2015-07-02 Thread Jan Wedekind
Hi, My project AIscm [1] uses autotools to build and install Guile binaries (.go) if that is of use to you. Jan [1] http://github.com/wedesoft/aiscm On July 2, 2015 1:56:00 AM GMT+01:00, Matt Wette wrote: >Hi Folks, > >I have developed a set of guile modules. I'd like to be able to >generat

Re: request for help with module build/install

2015-07-01 Thread Nala Ginrut
hi Matt! For .scm files, you may put it to (%site-dir) MOD_PATH := $(shell guile -c "(display (%site-dir))") For compiled .go, you may put it to (%site-ccache-dir) here: COMPILED_MOD := $(shell guile -c "(display (%site-ccache-dir))") And it won't be compiled again when you load it. Happy hackin

request for help with module build/install

2015-07-01 Thread Matt Wette
Hi Folks, I have developed a set of guile modules. I'd like to be able to generate a package hosted on, say, github.com (or any other recommended site). Is there a document providing guidance for this task? For example, looking at "%load-path" in guile I'm guessing I want the code to be i