AtlatestRepositorysigil-postmark
sigil-postmark / treepackage.sgl
1
;;; sigil-postmark - Postmark HTTP API client library for Sigil2
;;;3
;;; Provides functions for sending email (single + batch) and parsing4
;;; Postmark webhook events (bounce, spam-complaint, delivery, open, click).6
(package7
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: (list15
(config16
name: 'dev17
output-dir: "build/dev"18
debug?: #t19
optimize: 0)20
(config21
name: 'release22
output-dir: "build/release"23
debug?: #f24
optimize: 2))26
dependencies: (list27
(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: (list32
(task33
name: 'build34
description: "Compile sigil-postmark modules"35
steps: (list36
(compile-sigil-modules sources: "src/**/*.sgl"37
output-dir: (config-output-subdir "lib"))))))