19 lines
617 B
Common Lisp
19 lines
617 B
Common Lisp
(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")))
|