From: Marius Bakke <mbakke@fastmail.com>
To: Efraim Flashner <efraim@flashner.co.il>, guix-devel@gnu.org
Subject: Re: [PATCH 1/2] gnu: Add stfl.
Date: Thu, 10 Nov 2016 15:22:54 +0000 [thread overview]
Message-ID: <87y40r9x69.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <20161110082736.5825-2-efraim@flashner.co.il>
[-- Attachment #1: Type: text/plain, Size: 3444 bytes --]
Efraim Flashner <efraim@flashner.co.il> writes:
> * gnu/packages/ncurses.scm (stfl): New variable.
> ---
> gnu/packages/ncurses.scm | 50 +++++++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 49 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/ncurses.scm b/gnu/packages/ncurses.scm
> index 9799167..468cd99 100644
> --- a/gnu/packages/ncurses.scm
> +++ b/gnu/packages/ncurses.scm
> @@ -3,6 +3,7 @@
> ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
> ;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
> ;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
> +;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -26,7 +27,8 @@
> #:use-module (guix build-system gnu)
> #:use-module (guix build-system perl)
> #:use-module (gnu packages)
> - #:use-module (gnu packages perl))
> + #:use-module (gnu packages perl)
> + #:use-module (gnu packages swig))
>
> (define-public ncurses
> (let ((patch-makefile-phase
> @@ -207,3 +209,49 @@ curses widgets, such as dialog boxes.")
> "@code{Curses} is the interface between Perl and the curses library
> of your system.")
> (license (package-license perl))))
> +
> +(define-public stfl
> + (package
> + (name "stfl")
> + (version "0.24")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "http://www.clifford.at/stfl/stfl-"
> + version ".tar.gz"))
> + (sha256
> + (base32
> + "1460d5lc780p3q38l3wc9jfr2a7zlyrcra0li65aynj738cam9yl"))))
> + (build-system gnu-build-system)
> + (arguments
> + '(#:tests? #f ; no test target
> + #:phases
> + (modify-phases %standard-phases
> + ;; there is no configure script so we get to do it manually
> + (replace 'configure
> + (lambda* (#:key outputs #:allow-other-keys)
> + (substitute* "Makefile"
> + (("\\$\\(prefix\\)") (assoc-ref outputs "out")))
> + (setenv "DESTDIR" "")
> + #t))
Would it work to simply (setenv "prefix" out), instead of substituting?
Not sure which approach I prefer however, so feel free to disregard this.
> + ;; in our ncurses, the headers are in /include
> + (add-before 'build 'patch-ncursesw
> + (lambda _
> + (substitute* '("stfl_internals.h")
> + (("ncursesw/") ""))
> + #t))
> + (add-after 'install 'install-missing-symlink
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let* ((out (assoc-ref outputs "out"))
> + (lib (string-append out "/lib")))
> + ;; newsbeuter looks for libstfl.so.0
Perhaps just say "some programs" instead of newsbeuter, since they are
mostly unrelated.
> + (symlink "libstfl.so"
> + (string-append lib "/libstfl.so.0"))))))))
> + (inputs
> + `(("ncurses" ,ncurses)
> + ("swig" ,swig)))
Swig should probably be a native-input. Other than that LGTM!
> + (home-page "http://www.clifford.at/stfl/")
> + (synopsis "Structured terminal forms library")
> + (description "Stfl is a library which implements a curses-based widget
> +set for text terminals.")
> + (license lgpl3+)))
> --
> 2.10.2
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 454 bytes --]
next prev parent reply other threads:[~2016-11-10 15:23 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-10 8:27 [PATCH 0/2] Add newsbeuter Efraim Flashner
2016-11-10 8:27 ` [PATCH 1/2] gnu: Add stfl Efraim Flashner
2016-11-10 15:22 ` Marius Bakke [this message]
2016-11-10 17:22 ` Efraim Flashner
2016-11-11 10:18 ` Tobias Geerinckx-Rice
2016-11-11 12:15 ` Efraim Flashner
2016-11-10 8:27 ` [PATCH 2/2] gnu: Add newsbeuter Efraim Flashner
2016-11-10 15:39 ` Marius Bakke
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=87y40r9x69.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me \
--to=mbakke@fastmail.com \
--cc=efraim@flashner.co.il \
--cc=guix-devel@gnu.org \
/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.