sst/sst.asd
J S 3c2ad92190
feat[all] Minimum example reached.
- Added command-line options for help, version, and setting/unsetting a
single option.
- Added test files
- Added error check for empty file.
2023-12-19 23:58:12 -05:00

19 lines
813 B
Common Lisp

(defsystem :sst
:depends-on (:systemd-parse :adopt)
:components ((:file "packages")
(:module "src"
:serial t
:components ((:file "flags")
(:file "ui")
(:file "edit")
(:file "main")
)))
:author "Judah Sotomayor <development@freedomland.xyz>"
:maintainer "Judah Sotomayor <development@freedomland.xyz>"
:license "GPLv3"
:version "0.1"
:homepage "https://git.freedomland.xyz/judahsotomayor/sst"
:bug-tracker "https://git.freedomland.xyz/judahsotomayor/sst/issues"
:source-control (:git "https://git.freedomland.xyz/judahsotomayor/sst.git")
:description "A command-line utility to automatically (re)configure systemd .service files")