gnu: Add cl-3b-bmfont.
* gnu/package/lisp-xyz.scm (cl-3b-bmfont, ecl-3b-bmfont, sbcl-3b-bmfont): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
102f668acd
commit
633e441672
1 changed files with 42 additions and 0 deletions
|
@ -8745,6 +8745,48 @@ respectively.")
|
|||
(define-public ecl-png-read
|
||||
(sbcl-package->ecl-package sbcl-png-read))
|
||||
|
||||
(define-public sbcl-3b-bmfont
|
||||
(let ((commit "d1b5bec0de580c2d08ec947a93c56b1400f2a37a")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-3b-bmfont")
|
||||
(version (git-version "0.0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/3b/3b-bmfont/")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "3b-bmfont" version))
|
||||
(sha256
|
||||
(base32 "12sgf7m0h6fqzhvkas7vmci6mprj3j3fnz778jlbqbsydln6v2yc"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(arguments
|
||||
`(#:asd-systems
|
||||
'("3b-bmfont"
|
||||
"3b-bmfont/text"
|
||||
"3b-bmfont/common"
|
||||
"3b-bmfont/xml"
|
||||
"3b-bmfont/json")))
|
||||
(inputs
|
||||
`(("alexandria" ,sbcl-alexandria)
|
||||
("cxml" ,sbcl-cxml)
|
||||
("flexi-streams" ,sbcl-flexi-streams)
|
||||
("jsown" ,sbcl-jsown)
|
||||
("split-sequence" ,sbcl-split-sequence)))
|
||||
(home-page "https://github.com/3b/3b-bmfont/")
|
||||
(synopsis "Read/write bmfont metadata files")
|
||||
(description
|
||||
"This is a Common Lisp library which provides functionality to
|
||||
read/write Bit Map Font (BMF) into text, JSON and XML.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public ecl-3b-bmfont
|
||||
(sbcl-package->ecl-package sbcl-3b-bmfont))
|
||||
|
||||
(define-public cl-3b-bmfont
|
||||
(sbcl-package->cl-source-package sbcl-3b-bmfont))
|
||||
|
||||
(define-public sbcl-zpng
|
||||
(package
|
||||
(name "sbcl-zpng")
|
||||
|
|
Reference in a new issue