From: Leo Famulari <leo@famulari.name>
To: guix-devel@gnu.org
Subject: [v2 1/1] gnu: Add peg-markdown.
Date: Sat, 28 Nov 2015 16:32:01 -0500 [thread overview]
Message-ID: <91abb64a6b8279ea62bcefff711586f790c83734.1448746196.git.leo@famulari.name> (raw)
In-Reply-To: <cover.1448746196.git.leo@famulari.name>
In-Reply-To: <cover.1448746196.git.leo@famulari.name>
* gnu/packages/markdown.scm (peg-markdown): New variable.
---
gnu/packages/markdown.scm | 63 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git a/gnu/packages/markdown.scm b/gnu/packages/markdown.scm
index a20eef6..e90329a 100644
--- a/gnu/packages/markdown.scm
+++ b/gnu/packages/markdown.scm
@@ -23,8 +23,11 @@
#:use-module (guix packages)
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
+ #:use-module (gnu packages glib)
#:use-module (gnu packages perl)
+ #:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
+ #:use-module (gnu packages valgrind)
#:use-module (gnu packages web)
#:use-module (gnu packages zip))
@@ -98,3 +101,63 @@ you to write using an easy-to-read, easy-to-write plain text format, then
convert it to structurally valid XHTML (or HTML).")
(license (non-copyleft "file://License.text"
"See License.text in the distribution."))))
+
+(define-public peg-markdown
+ (package
+ (name "peg-markdown")
+ (version "0.4.14")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/jgm/peg-markdown/archive/"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1019f6hy1njmiigz16rrdgncrxz235sfq6zi1a4i3vfgb1hca6qi"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:test-target "test"
+ #:make-flags (list "CC=gcc")
+ #:phases (modify-phases %standard-phases
+ (delete 'configure)
+ ;; The Makefile offers a memory leak test using
+ ;; Valgrind.
+ (add-after 'check 'leak-check
+ (lambda _
+ (zero? (system* "make" "leak-check"))))
+ (replace
+ 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; The Makefile does not check if the output paths exist.
+ (let* ((out (assoc-ref %outputs "out"))
+ (bin (string-append out "/bin"))
+ (doc (string-append out "/share/man/man1")))
+ (mkdir-p bin)
+ ;; The top-level Makefile does not have an install
+ ;; target, so we have to do this manually.
+ (zero?
+ (system* "make" "-C" "peg-0.1.4"
+ (string-append "PREFIX=" %output)
+ "CC=gcc" "install"))
+ ;; The Makefile does not install the manpage.
+ (install-file "peg-0.1.4/peg.1" doc)
+ ;; The manpage applies to both peg and leg.
+ (symlink
+ (string-append doc "/peg.1")
+ (string-append doc "/leg.1"))
+ #t))))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("valgrind" ,valgrind)))
+ (inputs
+ `(("perl" ,perl)
+ ("glib" ,glib)))
+ (synopsis "Implementation of markdown in C, using a PEG grammar")
+ (description "This is an implementation of John Gruber's markdown in C. It
+uses a parsing expression grammar (PEG) to define the syntax. This should allow
+easy modification and extension. It currently supports output in HTML, LaTeX,
+ODF, or groff_mm formats. Both a library and a standalone program are
+provided.")
+ (home-page "https://github.com/jgm/peg-markdown")
+ (license (list gpl2+ expat)))) ; Dual-licensed
--
2.6.2
next prev parent reply other threads:[~2015-11-28 21:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-28 21:32 [v2 0/1] Add peg-markdown with proper manpages Leo Famulari
2015-11-28 21:32 ` Leo Famulari [this message]
2015-11-29 10:21 ` [v2 1/1] gnu: Add peg-markdown Ludovic Courtès
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
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=91abb64a6b8279ea62bcefff711586f790c83734.1448746196.git.leo@famulari.name \
--to=leo@famulari.name \
--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 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).