-
Notifications
You must be signed in to change notification settings - Fork 0
/
tar-cli.asd
31 lines (29 loc) · 1.1 KB
/
tar-cli.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
(asdf:defsystem #:tar-cli
:version (:read-file-form "version.lisp-expr")
:author "Eric Timmons <[email protected]>"
:description "Executable for CL-TAR"
:license "MIT"
:defsystem-depends-on ("tar-cli-asdf")
:class "tar-cli-asdf:tar-cli-system"
:depends-on ("adopt" "tar" "tar/create" "tar/extract")
:pathname "src/cli/"
:entry-point "tar-cli::main"
:build-operation "asdf-release-ops:dynamic-program-op"
:build-pathname #-os-windows "../../build/bin/cl-tar" #+os-windows "../../build/bin/cl-tar.exe"
:components ((:file "package")
(:file "main" :depends-on ("package")))
:release-license-file "../../LICENSE"
:release-readme-file "../../README.md"
:release-staging-directory "../../build/release-staging/"
:release-directory "../../releases/"
:release-structure
((:module "bin"
:components
((:program-file "cl-tar")))
(:module "share"
:components
((:module "cl-tar"
:append-version t
:components ((:license-file "LICENSE")
(:readme-file "README")
(:dependencies-license-file "BUNDLED-LICENSES")))))))