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.0"
9 description: "Twitch Helix API client library for Sigil"
10 url: "https://codeberg.org/sigil/sigil-twitch"
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.9.0")
28 (from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.9.0")
29 (from-git url: "codeberg:sigil/sigil" package: "sigil-json" version: "^0.9.0")
30 (from-git url: "codeberg:sigil/sigil-oauth" version: "^0.9.0"))
32 tasks: (list
33 (task
34 name: 'build
35 description: "Compile sigil-twitch modules"
36 steps: (list
37 (compile-sigil-modules sources: "src/**/*.sgl"
38 output-dir: (config-output-subdir "lib"))))))