From 5d0dbd6a0638a04d87f4bad99eac6511ee8faa7c Mon Sep 17 00:00:00 2001 From: Silas Vedder Date: Fri, 14 Oct 2022 15:18:01 +0200 Subject: [PATCH] hall.scm updated --- hall.scm | 42 ++++++++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/hall.scm b/hall.scm index 209f1c5..1348421 100644 --- a/hall.scm +++ b/hall.scm @@ -10,32 +10,38 @@ (license gpl3+) (dependencies `()) (skip ()) - (files (libraries ((directory "bible-tools" ()) - (scheme-file "bible-tools"))) + (files (libraries + ((directory + "bible-tools" + ((scheme-file "latex-export") + (scheme-file "count-words") + (scheme-file "bible-tools"))))) (tests ((directory "tests" ()))) (programs ((directory "scripts" - ((in-file "bible2latex") (in-file "count-words"))))) + ((in-file "bible-app") + (in-file "word-counter") + (in-file "bible2latex"))))) (documentation - ((text-file "ChangeLog") - (text-file "AUTHORS") - (text-file "NEWS") - (text-file "README.org") - (symlink "README" "README.org") - (text-file "HACKING") - (text-file "COPYING") - (directory + ((directory "doc" ((texi-file "bible-tools") (text-file "stamp-vti") (info-file "bible-tools") (text-file ".dirstamp") - (texi-file "version"))))) + (texi-file "version"))) + (text-file "COPYING") + (text-file "HACKING") + (symlink "README" "README.org") + (org-file "README") + (text-file "NEWS") + (text-file "AUTHORS") + (text-file "ChangeLog"))) (infrastructure - ((in-file "pre-inst-env") - (automake-file "Makefile") - (autoconf-file "configure") + ((scheme-file "hall") + (text-file ".gitignore") + (scheme-file "guix") (directory "build-aux" ((scheme-file "test-driver") @@ -43,6 +49,6 @@ (text-file "mdate-sh") (text-file "missing") (text-file "install-sh"))) - (scheme-file "guix") - (text-file ".gitignore") - (scheme-file "hall"))))) + (autoconf-file "configure") + (automake-file "Makefile") + (in-file "pre-inst-env")))))