more devel

This commit is contained in:
2025-08-22 01:35:57 +02:00
parent 30e95c5a64
commit 02890d0a26
3 changed files with 919 additions and 29 deletions

23
info.rkt Normal file
View File

@@ -0,0 +1,23 @@
#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" "file/unzip"))
(define build-deps
'("racket-doc"
"draw-doc"
"rackunit-lib"
"scribble-lib"
))