[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
about -lcurses
From: |
guy fleury |
Subject: |
about -lcurses |
Date: |
Fri, 09 Nov 2018 21:46:25 +0200 |
User-agent: |
Evolution 3.30.1-1 |
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+)))
- about -lcurses,
guy fleury <=