changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / demo.asd

changeset 43: cc2204bc6109
parent: 02aa015bff73
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 28 Jul 2024 21:18:52 -0400
permissions: -rw-r--r--
description: revamp
1 ;;; demo.asd
2 (defsystem "demo"
3  :version "0.1.0"
4  :author "Richard Westhaver <richard.westhaver@gmail.com>"
5  :maintainer "Richard Westhaver <richard.westhaver@gmail.com>"
6  :description "comp demo system"
7  :homepage "https://rwest.io/demo"
8  :bug-tracker "https://vc.compiler.ocmpany/demo/issues"
9  :source-control (:hg "https://vc.compiler.company/demo")
10  :license "WTF"
11  :depends-on (:user)
12  :components ((:file "pkg")))
13 
14 (defmethod perform :after ((op load-op) (c (eql (find-system :demo))))
15  (pushnew :demo *features*))