Add Chicken egg information

This commit is contained in:
Lassi Kortela 2021-08-25 00:09:50 +03:00
parent 0279505d2c
commit 745dc5c91c
3 changed files with 33 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*.build.sh
*.import.scm
*.install.sh
*.link
*.o
*.so

8
packrat.release-info Normal file
View File

@ -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")

19
pandoc.egg Normal file
View File

@ -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"))))