J S
3eb4b2d5d8
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.
17 lines
756 B
Common Lisp
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.")
|