systemd-parse/systemd-parse.asd
J S 3eb4b2d5d8
feat[license,split-line,readme] Added docs.
I added a documentation readme.
I added a license (GPLv3)

SPLIT-LINE now deletes SETTING from the hash-table if it is passed "SETTING=nil".
READ-SYSTEM now explicitly uses string= to identify sections in the
associative list.
2023-12-19 23:12:10 -05:00

17 lines
756 B
Common Lisp

(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.")