systemd-parse/systemd-parse.asd

17 lines
756 B
Plaintext
Raw Permalink Normal View History

(defsystem :systemd-parse
:depends-on (:cl-ppcre)
:components ((:file "packages")
(:module "src"
:serial t
:components ((:file "read")
(:file "write")
)))
:author "Judah Sotomayor <development@freedomland.xyz>"
:maintainer "Judah Sotomayor <development@freedomland.xyz>"
:license "GPLv3"
:version "0.1"
:homepage "https://git.freedomland.xyz/judahsotomayor/systemd-parse"
:bug-tracker "https://git.freedomland.xyz/judahsotomayor/systemd-parse/issues"
:source-control (:git "https://git.freedomland.xyz/judahsotomayor/systemd-parse.git")
:description "A library for extracting and writing data to and from systemd .service files.")