20 lines
549 B
Common Lisp
20 lines
549 B
Common Lisp
(defsystem #:myoji-accent
|
|
:version "0.1.0"
|
|
:description "Website for looking up the accent of Japanese family names."
|
|
:author "Alexander Rosenberg <zanderpkg@pm.me>"
|
|
:maintainer "Alexander Rosenberg <zanderpkg@pm.me>"
|
|
:homepage "https://git.zander.im/Zander671/myoji-accent"
|
|
:license "AGPL3"
|
|
:depends-on (#:uiop
|
|
#:reblocks
|
|
#:reblocks-ui
|
|
#:reblocks-lass
|
|
#:mito)
|
|
:serial t
|
|
:components
|
|
((:file "packages")
|
|
(:file "accent")
|
|
(:file "index")
|
|
;;(:file "entry")
|
|
))
|