Add Chicken egg information
This commit is contained in:
parent
0279505d2c
commit
745dc5c91c
|
@ -0,0 +1,6 @@
|
||||||
|
*.build.sh
|
||||||
|
*.import.scm
|
||||||
|
*.install.sh
|
||||||
|
*.link
|
||||||
|
*.o
|
||||||
|
*.so
|
|
@ -0,0 +1,8 @@
|
||||||
|
;;; -*- Scheme -*-
|
||||||
|
|
||||||
|
;;; This file is used by the CHICKEN 5 extension which caches eggs in
|
||||||
|
;;; egg servers (henrietta-cache)
|
||||||
|
|
||||||
|
(uri
|
||||||
|
egg-file
|
||||||
|
"https://raw.githubusercontent.com/lassik/scheme-pandoc/master/pandoc.egg")
|
|
@ -0,0 +1,19 @@
|
||||||
|
;;; -*- Scheme -*-
|
||||||
|
|
||||||
|
;;; This file is used by the CHICKEN 5 extension manager
|
||||||
|
;;; (chicken-install)
|
||||||
|
|
||||||
|
((synopsis "Call upon Pandoc to parse documents into SXML")
|
||||||
|
(category parsing)
|
||||||
|
(license "MIT")
|
||||||
|
(author "Lassi Kortela")
|
||||||
|
(maintainer "Lassi Kortela")
|
||||||
|
(dependencies medea)
|
||||||
|
(test-dependencies)
|
||||||
|
(distribution-files
|
||||||
|
"pandoc.egg"
|
||||||
|
"pandoc.release-info"
|
||||||
|
"pandoc.chicken.scm"
|
||||||
|
"pandoc.r5rs.scm")
|
||||||
|
(components
|
||||||
|
(extension pandoc (source "pandoc.chicken.scm"))))
|
Loading…
Reference in New Issue