* sbcl package definition
@ 2013-10-06 5:23 Kete
2013-10-06 19:28 ` Cyril Roelandt
2013-10-06 19:54 ` Ludovic Courtès
0 siblings, 2 replies; 5+ messages in thread
From: Kete @ 2013-10-06 5:23 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 158 bytes --]
Instead of ./configure, make and make install, sbcl uses a command like
this: INSTALL_ROOT=/home/me sh install.sh
How would the build-system and inputs go?
[-- Attachment #2: Type: text/html, Size: 344 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sbcl package definition
2013-10-06 5:23 sbcl package definition Kete
@ 2013-10-06 19:28 ` Cyril Roelandt
2013-10-06 19:50 ` Cyril Roelandt
2013-10-06 19:54 ` Ludovic Courtès
1 sibling, 1 reply; 5+ messages in thread
From: Cyril Roelandt @ 2013-10-06 19:28 UTC (permalink / raw)
To: Kete; +Cc: guix-devel
On 10/06/2013 07:23 AM, Kete wrote:
> Instead of ./configure, make and make install, sbcl uses a command like
> this: INSTALL_ROOT=/home/me sh install.sh
>
> How would the build-system and inputs go?
>
I think you should use the trivial build system, and define a builder in
the arguments:
(arguments
'(#:builder
(...)))
See gnu/packages/autotools.scm, for instance.
Cyril.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sbcl package definition
2013-10-06 19:28 ` Cyril Roelandt
@ 2013-10-06 19:50 ` Cyril Roelandt
2013-10-06 20:42 ` Ludovic Courtès
0 siblings, 1 reply; 5+ messages in thread
From: Cyril Roelandt @ 2013-10-06 19:50 UTC (permalink / raw)
To: Kete; +Cc: guix-devel
On 10/06/2013 09:28 PM, Cyril Roelandt wrote:
> On 10/06/2013 07:23 AM, Kete wrote:
>> Instead of ./configure, make and make install, sbcl uses a command like
>> this: INSTALL_ROOT=/home/me sh install.sh
>>
>> How would the build-system and inputs go?
>>
>
> I think you should use the trivial build system, and define a builder in
> the arguments:
>
Forget it and see Ludovic's answer :)
Cyril.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sbcl package definition
2013-10-06 19:50 ` Cyril Roelandt
@ 2013-10-06 20:42 ` Ludovic Courtès
0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2013-10-06 20:42 UTC (permalink / raw)
To: Cyril Roelandt; +Cc: guix-devel
Cyril Roelandt <tipecaml@gmail.com> skribis:
> On 10/06/2013 09:28 PM, Cyril Roelandt wrote:
>> On 10/06/2013 07:23 AM, Kete wrote:
>>> Instead of ./configure, make and make install, sbcl uses a command like
>>> this: INSTALL_ROOT=/home/me sh install.sh
>>>
>>> How would the build-system and inputs go?
>>>
>>
>> I think you should use the trivial build system, and define a builder in
>> the arguments:
>>
>
> Forget it and see Ludovic's answer :)
In short ‘trivial-build-system’ is really too trivial: it doesn’t have
the notion of phases, doesn’t unpack the source tarball, etc.
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sbcl package definition
2013-10-06 5:23 sbcl package definition Kete
2013-10-06 19:28 ` Cyril Roelandt
@ 2013-10-06 19:54 ` Ludovic Courtès
1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2013-10-06 19:54 UTC (permalink / raw)
To: Kete; +Cc: guix-devel
Hi,
Kete <kete@ninthfloor.org> skribis:
> Instead of ./configure, make and make install, sbcl uses a command
> like this: INSTALL_ROOT=/home/me sh install.sh
>
> How would the build-system and inputs go?
In general, when that happens, we still use ‘gnu-build-system’ but
customize/remove some of the phases.
An example of that is ‘net-tools’ in linux.scm: it has no ./configure
script, and has specific makefile targets.
For SBCL, you would probably remove the ‘configure’ phase, perhaps the
‘build’ phase too, and replace the ‘install’ phase:
(alist-replace
'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(setenv "INSTALL_ROOT" out)
(zero? (system* "sh" "install.sh"))))
(alist-delete 'configure %standard-phases))
HTH,
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-10-06 20:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-06 5:23 sbcl package definition Kete
2013-10-06 19:28 ` Cyril Roelandt
2013-10-06 19:50 ` Cyril Roelandt
2013-10-06 20:42 ` Ludovic Courtès
2013-10-06 19:54 ` Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).