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.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: (list16
(config17
name: 'dev18
output-dir: "build/dev"19
debug?: #t20
optimize: 0)21
(config22
name: 'release23
output-dir: "build/release"24
debug?: #f25
optimize: 2))27
dependencies: (list28
(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: (list33
(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: (list37
(task38
name: 'build39
description: "Compile sigil-postmark modules"40
steps: (list41
(compile-sigil-modules sources: "src/**/*.sgl"42
output-dir: (config-output-subdir "lib"))))))