1
0
Fork 0

Compare commits

...

7 Commits

Author SHA1 Message Date
TakeV 1116ff27a5
Mess up hall's formating 2023-07-06 23:28:29 -07:00
TakeV 138e328367
Remove manifest 2023-07-06 23:28:29 -07:00
TakeV d98c5db39a
Let hall know about bootstrap.sh and the manifest 2023-07-06 23:28:29 -07:00
TakeV abe82b9532
Add helper autoconfig script and manifest.scm 2023-07-06 23:28:29 -07:00
TakeV 0f460487c1
Add copying and guix.scm files to hall 2023-07-06 23:28:29 -07:00
TakeV e5d6d9cfb2
Read local source for package 2023-07-06 23:28:28 -07:00
Vivianne 0d5f6e6386 Fix fix 2023-07-06 23:27:29 -07:00
4 changed files with 34 additions and 18 deletions

3
bootstrap.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
autoreconf -vif

View File

@ -12,6 +12,9 @@
(define (make-board)
(make-array #f ggg-size ggg-size))
(define (board-ref board x y)
(array-ref board y x))
(define (board-assert-vacant board x y)
(define ref (board-ref board x y))
(if ref (error "That space is already occupied with:" ref) ref))

View File

@ -3,17 +3,26 @@
((guix licenses) #:prefix license:)
(guix download)
(guix build-system gnu)
(guix gexp)
(gnu packages)
(gnu packages autotools)
(gnu packages guile)
(gnu packages guile-xyz)
(gnu packages pkg-config)
(gnu packages texinfo))
(gnu packages texinfo)
(srfi srfi-1))
(define (keep-file? file stat)
(not (any (lambda (my-string)
(string-contains file my-string))
(list ".git" ".dir-locals.el" "guix.scm"))))
(package
(name "gib-gab-gob")
(version "0.1")
(source "./gib-gab-gob-0.1.tar.gz")
(source (local-file (dirname (current-filename))
#:recursive? #t
#:select? keep-file?))
(build-system gnu-build-system)
(arguments
`(#:modules

View File

@ -16,31 +16,32 @@
(files (libraries
((directory
"gib-gab-gob"
((compiled-scheme-file "game")
(scheme-file "rps")
((compiled-scheme-file "board")
(compiled-scheme-file "game")
(scheme-file "game")
(compiled-scheme-file "board")
(scheme-file "board")
(scheme-file "rps")
(compiled-scheme-file "rps")))))
(tests ((directory "tests" ())))
(tests ())
(programs
((directory
"scripts"
((in-file "make-joiner")
(in-file "make-initiator")
(text-file "make-initiator")
(text-file "make-joiner")))))
(documentation ((org-file "README")))
(text-file "make-joiner")
(text-file "make-initiator")))))
(documentation
((org-file "README") (text-file "COPYING")))
(infrastructure
((in-file "pre-inst-env")
((automake-file "Makefile")
(autoconf-file "configure")
(text-file ".gitignore")
(scheme-file "hall")
(directory
"build-aux"
((tex-file "texinfo")
(scheme-file "test-driver")
((scheme-file "test-driver")
(text-file "missing")
(text-file "install-sh")
(text-file "mdate-sh")))
(scheme-file "hall")
(text-file ".gitignore")
(autoconf-file "configure")
(automake-file "Makefile")))))
(text-file "install-sh")))
(in-file "pre-inst-env")
(scheme-file "guix")
(shell-file "bootstrap")))))