aboutsummaryrefslogtreecommitdiffstats
path: root/xfdf.asd
diff options
context:
space:
mode:
authorTeddy Wing2023-04-16 15:44:12 +0200
committerTeddy Wing2023-04-16 15:44:12 +0200
commit3347a25d6abc00f0cbcea893282eef949ca9b25f (patch)
treea2c8aade93424b5d47a26a506c7f78fbff593713 /xfdf.asd
downloadxfdf-3347a25d6abc00f0cbcea893282eef949ca9b25f.tar.bz2
Scaffold for a library to generate XFDF XML
The library should, given a list of cons cells, generate XFDF data based on those keys and values.
Diffstat (limited to 'xfdf.asd')
-rw-r--r--xfdf.asd10
1 files changed, 10 insertions, 0 deletions
diff --git a/xfdf.asd b/xfdf.asd
new file mode 100644
index 0000000..aedf49e
--- /dev/null
+++ b/xfdf.asd
@@ -0,0 +1,10 @@
+(asdf:defsystem xfdf
+ :description "Convert data to XFDF for PDF forms"
+ :version "0.0.1"
+ :license "GPL-3.0-or-later"
+ :author "Teddy Wing"
+
+ :components ((:module "src"
+ :serial t
+ :components ((:file "package")
+ (:file "xfdf")))))