Files
web-racket/info.rkt
Hans Dijkema f8057fccc5 Example further and also message box preparation.
NB. does not work currently with the linux flatpak stuff.

Signed-off-by: Hans Dijkema <hans@dijkewijk.nl>
2025-11-13 16:28:17 +01:00

24 lines
542 B
Racket

#lang info
(define pkg-authors '(hnmdijkema))
(define version "0.1.0")
(define license 'GPL-3.0-or-later) ; The liboa library has this license
(define collection "web-racket")
(define pkg-desc "web-racket - A Web Based GUI library, based on web-wire")
(define scribblings
'(
("scribblings/web-racket.scrbl" () (gui-library) "web-racket")
)
)
(define deps
'("racket/base" "net/http-easy" "gregor" "html-printer" "simple-ini"))
(define build-deps
'("racket-doc"
"draw-doc"
"rackunit-lib"
"scribble-lib"
))