all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: ng0 <ng0@we.make.ritual.n0.is>
To: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
Cc: guix-devel@gnu.org
Subject: Re: help with setenv of perl-curses
Date: Sat, 23 Jul 2016 13:18:10 +0000	[thread overview]
Message-ID: <87d1m4sdbh.fsf@we.make.ritual.n0.is> (raw)
In-Reply-To: <idjshwex10m.fsf@bimsb-sys02.mdc-berlin.net> (Ricardo Wurmus's message of "Wed, 15 Jun 2016 11:19:21 +0200")

Possibly fixed with this patch. Things I have not addressed so
far and require input on: How to do this
"perl Makefile.PL PANELS MENUS FORMS" in the setup.
Successfully built does not mean functional in all cases, so I
will build the package I needed this for now and see if it
changed.

From 32d65d360b07d8643fffd21e64767e0219cd9b4c Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Sat, 23 Jul 2016 13:03:22 +0000
Subject: [PATCH] gnu: Add perl-curses.

* gnu/packages/perl.scm (perl-curses): New variable.
---
 gnu/packages/perl.scm | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f42abee..552cee1 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -29,6 +29,7 @@
 (define-module (gnu packages perl)
   #:use-module (guix licenses)
   #:use-module (gnu packages)
+  #:use-module (gnu packages ncurses)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
@@ -1097,6 +1098,61 @@ contained in Appendix A of FIPS Publication 181, \"Standard for Automated
 Password Generator\".")
     (license (package-license perl))))
 
+(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_LIBTYPE" "ncurses")
+             (setenv "CURSES_CFLAGS"
+                     (string-append "-I" (assoc-ref inputs "ncurses")
+                                    "/include"))
+             (setenv "CURSES_PANEL_CFLAGS"
+                     (string-append "-I" (assoc-ref inputs "ncurses")
+                                    "/include"))
+             (setenv "CURSES_MENU_CFLAGS"
+                     (string-append "-I" (assoc-ref inputs "ncurses")
+                                    "/include"))
+             (setenv "CURSES_FORM_CFLAGS"
+                     (string-append "-I" (assoc-ref inputs "ncurses")
+                                    "/include"))
+             (setenv "CURSES_LDFLAGS"
+                     (string-append "-L" (assoc-ref inputs "ncurses")
+                                    "/lib -lncurses"))
+             (setenv "CURSES_PANEL_LDFLAGS"
+                     (string-append "-L" (assoc-ref inputs "ncurses")
+                                    "/lib -lpanel"))
+             (setenv "CURSES_MENU_LDFLAGS"
+                     (string-append "-L" (assoc-ref inputs "ncurses")
+                                    "/lib -lmenu"))
+             (setenv "CURSES_FORM_LDFLAGS"
+                     (string-append "-L" (assoc-ref inputs "ncurses")
+                                    "/lib -lform")))))))
+    (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))))
+
+
 (define-public perl-czplib
   (package
     (name "perl-czplib")
-- 
2.9.1


-- 
♥Ⓐ  ng0 – http://we.make.ritual.n0.is
For non-prism friendly talk find me on http://www.psyced.org
SecuShare – http://secushare.org

  reply	other threads:[~2016-07-23 13:18 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d1m4sdbh.fsf@we.make.ritual.n0.is \
    --to=ng0@we.make.ritual.n0.is \
    --cc=guix-devel@gnu.org \
    --cc=ricardo.wurmus@mdc-berlin.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.