changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / lisp/lib/skel/skel.asd

revision 18: 61482ce290f9
child 42: 9edf6739cf09
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/lisp/lib/skel/skel.asd	Mon Oct 23 23:33:06 2023 -0400
     1.3@@ -0,0 +1,16 @@
     1.4+#+sb-core-compression
     1.5+(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
     1.6+  (uiop:dump-image (asdf:output-file o c) :executable t :compression t))
     1.7+
     1.8+(defsystem "skel"
     1.9+  :version "0.1.0"
    1.10+  :maintainer "ellis <ellis@rwest.io>"
    1.11+  :bug-tracker "https://lab.rwest.io/ellis/skel/issues"
    1.12+  :class :package-inferred-system
    1.13+  :defsystem-depends-on (:asdf-package-system)
    1.14+  :depends-on (:uiop :asdf :sb-posix :sb-bsd-sockets :sb-concurrency :std :organ :cl-ppcre :skel/pkg)
    1.15+  :in-order-to ((test-op (test-op skel/tests)))
    1.16+  :perform (test-op (op c) (uiop:symbol-call '#:rt '#:do-tests))
    1.17+  :build-operation "program-op"
    1.18+  :build-pathname "skel"
    1.19+  :entry-point "skel/cli:main")