AtlatestRepositorysigil-twitch

sigil-twitch / treepackage.sgl

1;;; sigil-twitch - Twitch Helix API client library for Sigil
2;;;
3;;; Provides functions for stream management, scheduling, analytics,
4;;; chat interaction, and EventSub real-time events.
5
6(package
7 name: "sigil-twitch"
8 version: "0.1.2"
9 sigil: "0.20"
10 description: "Twitch Helix API client library for Sigil"
11 url: "https://codeberg.org/sigil/sigil-twitch"
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")
31 (from-git url: "codeberg:sigil/sigil-oauth" version: "^0.9"))
33 dev-dependencies: (list
34 (from-git url: "codeberg:sigil/sigil" package: "sigil-test" version: ">=0.21")
35 (from-git url: "codeberg:sigil/sigil" package: "sigil-test-runner" version: ">=0.21"))
37 tasks: (list
38 (task
39 name: 'build
40 description: "Compile sigil-twitch modules"
41 steps: (list
42 (compile-sigil-modules sources: "src/**/*.sgl"
43 output-dir: (config-output-subdir "lib"))))))