13 lines
517 B
Common Lisp
13 lines
517 B
Common Lisp
(defsystem :monastery
|
|
:author "Joao Mauricio <jean0t>"
|
|
:license "AGPL-3"
|
|
:description "This library provides functionality to read and parse MDX/MDD dictionary files commonly used in electronic dictionaries"
|
|
:version "0.0.1"
|
|
:homepage "https://git.ajattix.org/Jamno/monastery"
|
|
:source-control (:git "https://git.ajattix.org/Jamno/monastery.git")
|
|
:serial t
|
|
:components ((:file "package")
|
|
(:file "types")
|
|
(:file "core")
|
|
(:file "monastery"))
|
|
:depends-on (#:cffi #:cffi-ops))
|