unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* about  -lcurses
@ 2018-11-09 19:46 guy fleury
  2018-11-09 23:27 ` Mathieu Othacehe
  2018-11-10  1:55 ` Maxim Cournoyer
  0 siblings, 2 replies; 8+ messages in thread
From: guy fleury @ 2018-11-09 19:46 UTC (permalink / raw)
  Cc: help-guix

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:
-------------------------------------------------------
(define-module (gnu packages ne)
  #:use-module (guix licenses)
  #:use-module (gnu packages ncurses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))
(define-public ne
(package
  (name "ne")
  (version "3.1.2")
  (source (origin
            (method url-fetch)
            (uri (string-append "http://ne.di.unimi.it/ne-" version
                                ".tar.gz"))
            (sha256
             (base32
              "06qk3cqxyn098i1yn686bigpgh8vrrnj0qpkrgs6zwnq42s1y0d2")))
)
           
            
  (build-system gnu-build-system)
  (arguments
       `(#:tests? #f
          #:make-flags (list (string-append "prefix=" (assoc-ref
%outputs "out"))
                   "CC=gcc")
         #:parallel-build? #f
         #:phases (modify-phases %standard-phases (delete
'configure))))
  (inputs
     `(("ncurses" ,ncurses)))
  (synopsis "TODO")
  (description "TODO")
  (home-page " http://ne.di.unimi.it/ne")
  (license gpl3+)))


   

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-11-10 11:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-09 19:46 about -lcurses guy fleury
2018-11-09 23:27 ` Mathieu Othacehe
2018-11-10  1:55 ` Maxim Cournoyer
2018-11-10  7:35   ` guy fleury
2018-11-10  9:46     ` Pierre Neidhardt
2018-11-10 10:12       ` Mathieu Othacehe
2018-11-10 10:59       ` Hy Od
2018-11-10 11:01         ` Hy Od

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).