This commit is contained in:
2025-08-17 13:30:56 +02:00
parent 2c76e7c5e4
commit 7c404ea3b9
7 changed files with 71 additions and 2 deletions

26
info.rkt Normal file
View File

@@ -0,0 +1,26 @@
#lang info
(define pkg-authors '(hnmdijkema))
(define version "0.1.0")
(define license 'GPL-2.0-or-later) ; The liboa library has this license
(define collection "racket-sound")
(define pkg-desc "racket-sound - Integration of popular music/sound related libraries in racket")
(define scribblings
'(
("scribblings/racket-sound.scrbl" () (library) "racket-sound")
("scribblings/liboa.scrbl" () (library) "racket-sound/liboa/libao.rkt")
("scribblings/flac-decoder.scrbl" () (library) "racket-sound/libflac/flac-decoder.rkt")
("scribblings/taglib.scrbl" () (library) "racket-sound/libtag/taglib.rkt")
)
)
(define deps
'("racket/gui" "racket/base" "racket"))
(define build-deps
'("racket-doc"
"draw-doc"
"rackunit-lib"
"scribble-lib"
))