21 lines
412 B
Racket
21 lines
412 B
Racket
#lang info
|
|
|
|
(define collection "racket-sonos")
|
|
(define version "0.1.1")
|
|
(define pkg-authors '(hnmdijkema))
|
|
(define license 'MIT)
|
|
(define pkg-desc
|
|
"Sonos topology support built on racket-upnp")
|
|
(define deps
|
|
'("base"
|
|
"racket-upnp"
|
|
"simple-log"
|
|
))
|
|
(define build-deps
|
|
'("racket-doc"
|
|
"rackunit-lib"
|
|
"scribble-lib"))
|
|
|
|
(define scribblings
|
|
'(("scribblings/racket-sonos.scrbl" () (library))))
|