changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / demo.asd

changeset 44: 99d4ab4f8d53
parent: cc2204bc6109
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 11 Aug 2024 01:50:18 -0400
permissions: -rw-r--r--
description: update
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*))