2023-12-20 04:58:12 +00:00
|
|
|
(defsystem :sst
|
2023-12-20 00:34:31 +00:00
|
|
|
:depends-on (:systemd-parse :adopt)
|
|
|
|
:components ((:file "packages")
|
|
|
|
(:module "src"
|
|
|
|
:serial t
|
|
|
|
:components ((:file "flags")
|
2023-12-20 04:58:12 +00:00
|
|
|
(:file "ui")
|
|
|
|
(:file "edit")
|
2023-12-20 00:34:31 +00:00
|
|
|
(: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")
|