Generate build infrastructure with hall, add tests
This commit is contained in:
parent
c393784573
commit
05f019b269
17 changed files with 669 additions and 1 deletions
35
geohash/hconfig.scm
Normal file
35
geohash/hconfig.scm
Normal 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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue