From 034c64a8fd1b393bd32fea1e08a4c0a099519e9c Mon Sep 17 00:00:00 2001 From: J S Date: Tue, 19 Dec 2023 19:34:31 -0500 Subject: [PATCH] Initial .asd file --- sst.asd | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sst.asd diff --git a/sst.asd b/sst.asd new file mode 100644 index 0000000..e7716b2 --- /dev/null +++ b/sst.asd @@ -0,0 +1,16 @@ +(defsystem :ssd + :depends-on (:systemd-parse :adopt) + :components ((:file "packages") + (:module "src" + :serial t + :components ((:file "flags") + (:file "main") + ))) + :author "Judah Sotomayor " + :maintainer "Judah Sotomayor " + :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")