SHINMERA.s_LASS/lass.asd

29 lines
916 B
Plaintext
Raw Normal View History

2014-09-03 14:43:10 +02:00
#|
This file is a part of LASS
2014-10-09 21:44:52 +02:00
(c) 2014 Shirakumo http://tymoon.eu (shinmera@tymoon.eu)
2014-09-03 14:43:10 +02:00
Author: Nicolas Hafner <shinmera@tymoon.eu>
|#
(defsystem lass
:name "LASS"
:version "0.6.0"
:license "zlib"
2014-09-03 14:43:10 +02:00
:author "Nicolas Hafner <shinmera@tymoon.eu>"
:maintainer "Nicolas Hafner <shinmera@tymoon.eu>"
2014-09-05 11:34:19 +02:00
:description "Lisp Augmented Style Sheets. Compiles LASS to CSS."
2018-08-18 00:12:59 +02:00
:homepage "https://Shinmera.github.io/LASS/"
:bug-tracker "https://github.com/Shinmera/LASS/issues"
:source-control (:git "https://github.com/Shinmera/LASS.git")
2014-09-03 14:43:10 +02:00
:serial T
:components ((:file "package")
(:file "readable-list")
2014-09-03 18:48:54 +02:00
(:file "compiler")
(:file "property-funcs")
2014-09-03 18:48:54 +02:00
(:file "writer")
(:file "lass")
2015-03-08 17:34:38 +01:00
(:file "special")
(:file "asdf"))
:depends-on (:trivial-indent
:trivial-mimes
:cl-base64))