AtlatestRepositorysigil-twitch
sigil-twitch / treepackage.sgl
1
;;; sigil-twitch - Twitch Helix API client library for Sigil2
;;;3
;;; Provides functions for stream management, scheduling, analytics,4
;;; chat interaction, and EventSub real-time events.6
(package7
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: (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")31
(from-git url: "codeberg:sigil/sigil-oauth" version: "^0.9"))33
dev-dependencies: (list34
(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: (list38
(task39
name: 'build40
description: "Compile sigil-twitch modules"41
steps: (list42
(compile-sigil-modules sources: "src/**/*.sgl"43
output-dir: (config-output-subdir "lib"))))))