You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
681 B
Common Lisp

;;;; seanut.asd
(asdf:defsystem #:seanut
:description "command line utility to grab bulk media (e.g., full shows, full albums) from Jellyfin servers"
:author "a. fox"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:dexador #:with-user-abort #:unix-opts
#:com.inuoe.jzon #:babel #:ironclad #:quri)
:components ((:file "package")
(:file "util")
(:file "seanut"))
:entry-point "seanut::main"
:build-operation "program-op"
:build-pathname "bin/seanut")
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
(uiop:dump-image (asdf:output-file o c) :executable t :compression t))