Re: Make a library installable?

2019-05-15 Thread Catonano
There's a package called guile-hall It creates a guile project instrumented with the autotools and it sort of manages it for you If your project contains c code guile-hall won't work and you'll need to edit your autotools files by hand A project packaged with the autotools can be built on, say,

Re: Make a library installable?

2019-05-14 Thread Amirouche Boubekki
Le mar. 14 mai 2019 à 06:42, HiPhish a écrit : > Oh cool, I did not know about guile-build-system, that one must be new? Yes, it somewhat new. Here is the code of it http://git.savannah.gnu.org/cgit/guix.git/tree/guix/build-system/guile.scm > I am not seeing anything about it also compiling a

Re: Make a library installable?

2019-05-13 Thread HiPhish
Oh cool, I did not know about guile-build-system, that one must be new? I am not seeing anything about it also compiling and installing Info documentation though. On Monday, 13 May 2019 00:23:31 CEST you wrote: > On 2019-05-12 16:50, HiPhish wrote: > > Hello Schemers, > > > > A while ago I pres

Re: Make a library installable?

2019-05-12 Thread amirouche
On 2019-05-12 16:50, HiPhish wrote: Hello Schemers, A while ago I presented my MessagePack implementation for Guile[1] here and I want to make it available to users. Guile has no dedicated package manager, I use guile as my package manager, It is easy enough to install. And Since I keep G

Re: Make a library installable? → conf

2019-05-12 Thread Arne Babenhauserheide
Arne Babenhauserheide writes: > wget https://bitbucket.org/ArneBab/conf/downloads/conf-0.2.2.tar.gz && tar xf > conf-0.2.2.tar.gz && cd conf-0.2.2 && ./bootstrap.sh && ./configure --prefix > ~/.local && make && make install Better use 0.2.3, that resolves some annoyances: wget https://bitbuck

Re: Make a library installable? → conf

2019-05-12 Thread Arne Babenhauserheide
HiPhish writes: > Hello Schemers, > > A while ago I presented my MessagePack implementation for Guile[1] here and I > want to make it available to users. Guile has no dedicated package manager, > so > it's either manual or Guix, and I would like to support both. What it the > best > way of

Make a library installable?

2019-05-12 Thread HiPhish
Hello Schemers, A while ago I presented my MessagePack implementation for Guile[1] here and I want to make it available to users. Guile has no dedicated package manager, so it's either manual or Guix, and I would like to support both. What it the best way of doing it? So far I have a repositor