-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasdf-release-ops-test.asd
35 lines (31 loc) · 1.31 KB
/
asdf-release-ops-test.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;;; asdf-release-ops Test System Definitions
;;;;
;;;; This software is part of asdf-release-ops. See README.org for more
;;;; information. See LICENSE for license information.
(asdf:load-system :asdf-release-ops)
(defsystem #:asdf-release-ops-test
:description "Test system for asdf-release-ops."
:license "BSD-2-Clause"
:version "0.0.1"
:pathname "test/"
:serial t
:components ((:file "package")
(:file "lisp-curl"))
:depends-on (#:asdf-release-ops
#:fiveam))
(defsystem #:asdf-release-ops-test/lisp-curl
:description "A test system that makes a curl-like executable (with far fewer options) using Drakma."
:license "BSD-2-Clause"
:version "0.0.1"
:entry-point "asdf-release-ops-test/lisp-curl::main"
:defsystem-depends-on (#:asdf-release-ops)
:class "asdf-release-ops:release-system"
:pathname "test/lisp-curl/"
:release-program-file-name "lisp-curl"
:release-staging-directory "build/release-staging/"
:release-directory "releases/"
:components ((:file "lisp-curl"))
:depends-on (#:drakma))
(defmethod asdf-release-ops:program-static-image-features ((op asdf-release-ops:static-program-image-op)
(s (eql (asdf:find-system :asdf-release-ops-test/lisp-curl))))
(list :cl+ssl-foreign-libs-already-loaded))