agentics-astt


Logs | Files | GitLab


1
commit 7fba8be2f7dc96d820426ad1adb02b78ecf40081 (HEAD -> master, origin/master)
2
Author: Connor Etherington <[email protected]>
3
Date:   Wed Jul 15 06:51:15 2026 +0200
4
5
    agentics-astt : Agentics ecosystem package
6
---
7
 .SRCINFO | 14 ++++++++++++++
8
 PKGBUILD | 24 ++++++++++++++++++++++++
9
 2 files changed, 38 insertions(+)
10
11
diff --git a/.SRCINFO b/.SRCINFO
12
new file mode 100644
13
index 0000000..f246ea1
14
--- /dev/null
15
+++ b/.SRCINFO
16
@@ -0,0 +1,14 @@
17
+pkgbase = agentics-astt
18
+	pkgdesc = Agentics ASTT - the on-device speech engine, an encrypted Agentics component decrypted and run at runtime by the Agentics launcher
19
+	pkgver = 0.1.1
20
+	pkgrel = 1
21
+	url = https://agentics.co.za
22
+	arch = x86_64
23
+	license = custom
24
+	depends = agentics
25
+	options = !strip
26
+	options = !debug
27
+	source = agentics-astt-0.1.1-x86_64.enc::https://repo.agentics.co.za/x86_64/agentics-astt-0.1.1-x86_64.enc
28
+	sha512sums = 6162b88cc5f63dbb7404f607a6d6ddfc0d74db622794cfaa2a8e8959b072adc64a2088eadbd41b067e0e6d581e216cb2e0b6be5041bf03bac4cc353ae3cb5b8b
29
+
30
+pkgname = agentics-astt
31
diff --git a/PKGBUILD b/PKGBUILD
32
new file mode 100644
33
index 0000000..2f8aee4
34
--- /dev/null
35
+++ b/PKGBUILD
36
@@ -0,0 +1,24 @@
37
+# Maintainer: Connor Etherington <[email protected]>
38
+# ---
39
+pkgname=agentics-astt
40
+pkgver=0.1.1
41
+pkgrel=1
42
+pkgdesc="Agentics ASTT - the on-device speech engine, an encrypted Agentics component decrypted and run at runtime by the Agentics launcher"
43
+arch=('x86_64')
44
+url="https://agentics.co.za"
45
+license=('custom')
46
+depends=('agentics')
47
+options=('!strip' '!debug')
48
+source=("agentics-astt-0.1.1-x86_64.enc::https://repo.agentics.co.za/x86_64/agentics-astt-0.1.1-x86_64.enc")
49
+sha512sums=('6162b88cc5f63dbb7404f607a6d6ddfc0d74db622794cfaa2a8e8959b072adc64a2088eadbd41b067e0e6d581e216cb2e0b6be5041bf03bac4cc353ae3cb5b8b')
50
+
51
+package() {
52
+  install -Dm644 "$srcdir/agentics-astt-0.1.1-x86_64.enc" "$pkgdir/opt/agentics/components/speech/0.1.1/speech-0.1.1-linux-amd64.enc"
53
+  install -dm755 "$pkgdir/usr/share/doc/agentics-astt"
54
+  printf '%s\n' \
55
+    'agentics-astt ships the encrypted Agentics speech component.' \
56
+    'It is decrypted and executed at runtime by the Agentics launcher (agentics)' \
57
+    'and its managerd relay, which perform the sealed-box key exchange with the' \
58
+    'Agentics hub. Install the agentics package and launch it to use this component.' \
59
+    > "$pkgdir/usr/share/doc/agentics-astt/README"
60
+}