cl-mpd-runner/cl-mpd-runner.asd

19 lines
617 B
Plaintext
Raw Permalink Normal View History

2024-09-28 14:52:50 -04:00
(in-package #:cl-user)
(defparameter +cl-mpd-directory+
"/var/www/html/cgi/cl-mpd-runner/cl-mpd/")
(require 'asdf)
(pushnew +cl-mpd-directory+ asdf:*central-registry*)
(asdf:defsystem :cl-mpd-runner
:version "0.0.1"
:author "Bubblegumdrop <staticsunn@gmail.com>"
:description "CL-MPD-RUNNER: Music Player Daemon runner."
:defsystem-depends-on (:deploy) ;; so you need to quickload deploy sometime before.
:build-operation "deploy-op" ;; instead of program-op for asdf:make
:build-pathname "cl-mpd-runner"
:entry-point "cl-mpd-runner::main"
:depends-on (:mpd)
:components
((:file "runner")))