Generate build infrastructure with hall, add tests

This commit is contained in:
Ray Miller 2024-07-06 14:57:17 +01:00
parent c393784573
commit 05f019b269
17 changed files with 669 additions and 1 deletions

35
geohash/hconfig.scm Normal file
View file

@ -0,0 +1,35 @@
(define-module
(geohash hconfig)
#:use-module
(srfi srfi-26)
#:export
(%version
%author
%license
%copyright
%gettext-domain
G_
N_
init-nls
init-locale))
(define %version "0.1")
(define %author "Ray Miller")
(define %license 'gpl3+)
(define %copyright '(2024))
(define %gettext-domain "guile-geohash")
(define G_ identity)
(define N_ identity)
(define (init-nls) "Dummy as no NLS is used" #t)
(define (init-locale)
"Dummy as no NLS is used"
#t)