whalesong/info.rkt
2012-01-19 16:43:13 -05:00

30 lines
1.1 KiB
Racket

#lang setup/infotab
(define name "Whalesong")
(define blurb '("A Racket to JavaScript compiler"))
(define release-notes '((p "Bug fix: corrected issue 73 and 74. (https://github.com/dyoo/whalesong/issues/73). Some micro-optimizations to improve speed of struct construction.")))
(define version "1.14")
(define primary-file "make-launcher.rkt")
(define categories '(devtools))
(define repositories '("4.x"))
(define required-core-version "5.1.1")
;; I am disabling the automatic launchers: it's causing issues with
;; file permissions. The program "make-launcher.rkt" will build a
;; whalesong launcher, so I need to revise the instructions to use it
;; instead.
;;
;; (define racket-launcher-libraries '("whalesong.rkt"))
;; (define racket-launcher-names '("whalesong"))
;;
(define homepage "http://hashcollision.org/whalesong")
(define scribblings '(("scribblings/manual.scrbl")))
(define compile-omit-paths '("tests"
"sandbox"
"examples"
"experiments"
"simulator"
"tmp"))
(define can-be-loaded-with 'all)