34 lines
579 B
Racket
34 lines
579 B
Racket
#lang info
|
|
|
|
(define pkg-authors '(hnmdijkema))
|
|
(define version "0.1.1")
|
|
(define license 'MIT)
|
|
(define collection "racket-mimetypes")
|
|
(define pkg-desc "Mimetypes for al kinds of file extensions.")
|
|
|
|
(define scribblings
|
|
'(
|
|
("scrbl/racket-mimetypes.scrbl" () (library 0))
|
|
)
|
|
)
|
|
|
|
(define deps
|
|
'("racket/base"
|
|
)
|
|
)
|
|
|
|
(define build-deps
|
|
'("racket-doc"
|
|
"draw-doc"
|
|
"rackunit-lib"
|
|
"scribble-lib"
|
|
))
|
|
|
|
(define test-omit-paths 'all)
|
|
|
|
(define test-ignore-stderrs
|
|
'(
|
|
(all "could not be loaded")
|
|
(all "download site could not be resolved")
|
|
)
|
|
) |