unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* help with setenv of perl-curses
@ 2016-06-15  1:23 ng0
  2016-06-15  9:19 ` Ricardo Wurmus
  0 siblings, 1 reply; 13+ messages in thread
From: ng0 @ 2016-06-15  1:23 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1790 bytes --]

This is what I have so far, after many tries.
There was a generation which had a let for the ncurses in the phase,
but I seem not to be able to get the CURSES_CFLAGS and CURSES_CFLAGS
to pass along right.

(define-public perl-curses
  (package
   (name "perl-curses")
   (version "1.34")
   (source
    (origin
     (method url-fetch)
     (uri (string-append
           "https://cpan.metacpan.org/authors/id/G/GI/GIRAFFED/Curses-"
           version
           ".tar.gz"))
     (sha256
      (base32
       "0arj9llgwim4lilgxc1r3dyqw40210yhzfghbypnbqkbjkal93l0"))))
   (build-system perl-build-system)
   (inputs `(("ncurses" ,ncurses)))
   (arguments
    `(#:phases
      (modify-phases %standard-phases
                     (add-before
                      'configure 'set-curses-ldflags
                      (lambda* (#:key inputs #:allow-other-keys)
                               (setenv "CURSES_LDFLAGS"
                                       (string-append "-L" (assoc-ref inputs "ncurses")
                                                      "/lib/ncurses.so" "-lncurses"))
                               (setenv "CURSES_CFLAGS"
                                       (string-append "-I" (assoc-ref inputs "ncurses")
                                                      "/include")))))))
   (home-page "https://search.cpan.org/dist/Curses")
   (synopsis
    "Terminal screen handling and optimization")
   (description
    "Curses is the interface between Perl and your system's curses library.")
   (license (package-license perl))))

;;export CURSES_LDFLAGS="-L/usr/lib/ncurses -lncurses"
;;export CURSES_CFLAGS="-I/usr/include/ncurses"

--
♥Ⓐ ng0
For non-prism friendly talk find me on
psyced.org / loupsycedyglgamf.onion

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

end of thread, other threads:[~2016-09-07  6:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-15  1:23 help with setenv of perl-curses ng0
2016-06-15  9:19 ` Ricardo Wurmus
2016-07-23 13:18   ` ng0
2016-07-23 13:58     ` ng0
2016-07-24  5:25     ` Efraim Flashner
2016-08-06 13:31       ` ng0
2016-08-19 13:23         ` [PATCH] gnu: Add perl-curses (need help) ng0
2016-08-19 13:36           ` [PATCH][v2] gnu: Add perl-curses ng0
2016-09-06 17:36             ` Efraim Flashner
2016-09-06 21:39               ` ng0
2016-09-07  6:09                 ` Efraim Flashner
2016-07-25  8:18     ` help with setenv of perl-curses Vincent Legoll
2016-08-06 13:28       ` ng0

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