AtlatestRepositorysigil-postmark

sigil-postmark / treepackage.sgl

1;;; sigil-postmark - Postmark HTTP API client library for Sigil
2;;;
3;;; Provides functions for sending email (single + batch) and parsing
4;;; Postmark webhook events (bounce, spam-complaint, delivery, open, click).
5
6(package
7 name: "sigil-postmark"
8 version: "0.1.0"
9 description: "Postmark API client library for Sigil"
10 url: "https://codeberg.org/sigil/sigil-postmark"
11 license: "BSD-3-Clause"
12 authors: (list "David Wilson <[email protected]>")
14 configs: (list
15 (config
16 name: 'dev
17 output-dir: "build/dev"
18 debug?: #t
19 optimize: 0)
20 (config
21 name: 'release
22 output-dir: "build/release"
23 debug?: #f
24 optimize: 2))
26 dependencies: (list
27 (from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.13.0")
28 (from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.13.0")
29 (from-git url: "codeberg:sigil/sigil" package: "sigil-json" version: "^0.13.0"))
31 tasks: (list
32 (task
33 name: 'build
34 description: "Compile sigil-postmark modules"
35 steps: (list
36 (compile-sigil-modules sources: "src/**/*.sgl"
37 output-dir: (config-output-subdir "lib"))))))