From 3311057daeb234a2a4be3784a904a8bfc423bc8a Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Sun, 16 Jul 2023 23:38:08 -0500 Subject: Add build machinery --- .gitignore | 2 ++ Makefile | 15 +++++++++++++++ boudin.egg | 16 ++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 boudin.egg diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5635da --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +boudin +*.sh diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..48999db --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# boudin : a small static site generator + +DESTDIR = +PREFIX = $(DESTDIR)/usr + +boudin: boudin.scm + chicken-install -n + +.PHONY: install +install: + chicken-install + +.PHONY: clean +clean: + rm -f *.build.sh *.install.sh diff --git a/boudin.egg b/boudin.egg new file mode 100644 index 0000000..0187e71 --- /dev/null +++ b/boudin.egg @@ -0,0 +1,16 @@ +;; boudin -*- scheme + +((synopsis "A small static site generator.") + (author "Case Duckworth") + (version "12044") + (license "God Willing License") + (category fluff) + (dependencies chicanery + atom + html-parser + scss + srfi-37 + srfi-152 + sxpath) + (components + (program boudin))) -- cgit 1.4.1-21-gabe81