File: htmlgen.asd

package info (click to toggle)
cl-portable-aserve 20190720.gitcac1d69%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,240 kB
  • sloc: lisp: 22,564; makefile: 55; sh: 36
file content (18 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;;; -*- mode: lisp -*-

(defpackage #:htmlgen-system
  (:use #:cl #:asdf))
(in-package #:htmlgen-system)

(defclass acl-file (cl-source-file) ())
(defmethod source-file-type ((c acl-file) (s module)) "cl")

(defsystem htmlgen
    :author "John K. Foderaro"
    :licence "LLGPL"
    :default-component-class acl-file
    :components ((:file "htmlgen"))
    :depends-on (acl-compat)
    :perform (load-op :after (op htmlgen)
                      (pushnew :htmlgen cl:*features*)))