26 lines
409 B
Racket
26 lines
409 B
Racket
#lang info
|
|
|
|
(define pkg-authors '(hnmdijkema))
|
|
(define version "0.1.1")
|
|
(define license 'MIT)
|
|
(define collection "racket-sprintf")
|
|
(define pkg-desc "racket-sprintf - simple sprintf implementation")
|
|
|
|
(define scribblings
|
|
'(
|
|
("scribblings/sprintf.scrbl" () (library) "racket-sprintf")
|
|
)
|
|
)
|
|
|
|
(define deps
|
|
'("racket/base"
|
|
)
|
|
)
|
|
|
|
(define build-deps
|
|
'("racket-doc"
|
|
"scribble-lib"
|
|
)
|
|
)
|
|
|