I'm Guy!
Le 10 nov. 2018 12:59, "Hy Od" a écrit :
> Hi,
> for me PREFIX and prefix seems to be the same!
>
> I have sent a patch of ne package to guix-patch maillist!
> Le 10 nov. 2018 11:46, "Pierre Neidhardt" a écrit :
>
>>
>> > You also have a small mistake here
>> >
>> > : #:make-f
Hi,
for me PREFIX and prefix seems to be the same!
I have sent a patch of ne package to guix-patch maillist!
Le 10 nov. 2018 11:46, "Pierre Neidhardt" a écrit :
>
> > You also have a small mistake here
> >
> > : #:make-flags (list (string-append "prefix=" (assoc-ref
> >
Hi Pierre,
This might not be correct, depending on which Make and the Makefile.
> Lowercase "prefix" is actually the right directory variable for GNU Make.
> See the "(make) Directory Variables" info page.
>
In that precise case, without an upper case PREFIX, it won't build (check
the root makefi
thank you very much,
this is what i did
(snippet
;; use lncurses instead of lcurses
'(begin
(substitute* "src/makefile"
(("-lcurses")
"-lncurses"))
Hello,
guy fleury writes:
> hi all,
>
> i try to package a editor "nice editor":
> i got this error:
>
> ld: cannot find -lcurses
>
> on debian it works because -lcurses is a symlink to -lncurses(if i am
> not wrong)
>
> is there a solution without make a patch to the makifile?
If -
Hi Guy,
Your package is almost working, the important thing was to specified
"ncurses" as an input like you did.
> on debian it works because -lcurses is a symlink to -lncurses(if i am
> not wrong)
Yes, I guess they are doing some kind of symlinking. To make it work,
you can replace -lcurses
hi all,
i try to package a editor "nice editor":
i got this error:
ld: cannot find -lcurses
on debian it works because -lcurses is a symlink to -lncurses(if i am
not wrong)
is there a solution without make a patch to the makifile?
here is my package definition:
--