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.1"
9 sigil: "0.20"
10 description: "Postmark API client library for Sigil"
11 url: "https://codeberg.org/sigil/sigil-postmark"
12 license: "BSD-3-Clause"
13 authors: (list "David Wilson <[email protected]>")
15 configs: (list
16 (config
17 name: 'dev
18 output-dir: "build/dev"
19 debug?: #t
20 optimize: 0)
21 (config
22 name: 'release
23 output-dir: "build/release"
24 debug?: #f
25 optimize: 2))
27 dependencies: (list
28 (from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: ">=0.21")
29 (from-git url: "codeberg:sigil/sigil-http" version: "^0.18")
30 (from-git url: "codeberg:sigil/sigil-json" version: "^0.16"))
32 dev-dependencies: (list
33 (from-git url: "codeberg:sigil/sigil" package: "sigil-test" version: ">=0.21")
34 (from-git url: "codeberg:sigil/sigil" package: "sigil-test-runner" version: ">=0.21"))
36 tasks: (list
37 (task
38 name: 'build
39 description: "Compile sigil-postmark modules"
40 steps: (list
41 (compile-sigil-modules sources: "src/**/*.sgl"
42 output-dir: (config-output-subdir "lib"))))))