[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51278] [PATCH] gnu: Add neatmail.
From: |
jgart |
Subject: |
[bug#51278] [PATCH] gnu: Add neatmail. |
Date: |
Tue, 19 Oct 2021 02:13:58 -0400 |
* gnu/packages/mail.scm (neatmail): New variable.
---
gnu/packages/mail.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 523e6cdce3..6b29463ba3 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -4494,6 +4494,43 @@ (define-public libpst
databases, and other tools to process Outlook email archives.")
(license license:gpl2+)))
+(define-public neatmail
+ (package
+ (name "neatmail")
+ (version "02")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/aligrudi/neatmail")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "00d453d57d3v6ja2gpmjd8vch804c72g38pc1nr5shmz3hkgd52d"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; There are no tests.
+ #:make-flags
+ (list (string-append "CC=" ,(cc-for-target))
+ (string-append "DESTDIR=" %output))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install ; There is no install target in the Makefile.
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin")))
+ (rename-file "mail" "neatmail")
+ (install-file "neatmail" bin)))))))
+ (home-page "https://litcave.rudi.ir/")
+ (synopsis "Text-mode mail client")
+ (description
+"@command{neatmail} is a noninteractive mail client. It generates a listing
+of the messages in a mailbox in mbox format and executes a list of ex-like
+commands on it.")
+ (license license:isc)))
+
(define-public crm114
(package
(name "crm114")
--
2.33.0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#51278] [PATCH] gnu: Add neatmail.,
jgart <=