agentics-terminal


Logs | Files | GitLab


1
commit d41aa35ddf451d1de1fa299d898d7eefda1a873a
2
Author: Connor Etherington <[email protected]>
3
Date:   Wed Jul 15 06:37:11 2026 +0200
4
5
    agentics-terminal : 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..5d027dd
14
--- /dev/null
15
+++ b/.SRCINFO
16
@@ -0,0 +1,14 @@
17
+pkgbase = agentics-terminal
18
+	pkgdesc = Agentics Terminal - the voice-reactive terminal, an encrypted Agentics component decrypted and run at runtime by the Agentics launcher
19
+	pkgver = 0.1.4
20
+	pkgrel = 1
21
+	url = https://agentics.co.za
22
+	arch = x86_64
23
+	license = custom
24
+	depends = gentics
25
+	options = !strip
26
+	options = !debug
27
+	source = agentics-terminal-0.1.4-x86_64.enc::https://software.agentics.co.za/agentics/x86_64/agentics-terminal-0.1.4-x86_64.enc
28
+	sha512sums = 4cabcb6b14a57cb86c991763086334924e5672d7d4e0355b8f64891c5eb9a5b8aab2b9984833e063e4f5fbca22e34198ffb1a9f5e6dfd6ef11629e86780a4aa6
29
+
30
+pkgname = agentics-terminal
31
diff --git a/PKGBUILD b/PKGBUILD
32
new file mode 100644
33
index 0000000..74c4a91
34
--- /dev/null
35
+++ b/PKGBUILD
36
@@ -0,0 +1,24 @@
37
+# Maintainer: Connor Etherington <[email protected]>
38
+# ---
39
+pkgname=agentics-terminal
40
+pkgver=0.1.4
41
+pkgrel=1
42
+pkgdesc="Agentics Terminal - the voice-reactive terminal, 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=('gentics')
47
+options=('!strip' '!debug')
48
+source=("agentics-terminal-0.1.4-x86_64.enc::https://software.agentics.co.za/agentics/x86_64/agentics-terminal-0.1.4-x86_64.enc")
49
+sha512sums=('4cabcb6b14a57cb86c991763086334924e5672d7d4e0355b8f64891c5eb9a5b8aab2b9984833e063e4f5fbca22e34198ffb1a9f5e6dfd6ef11629e86780a4aa6')
50
+
51
+package() {
52
+  install -Dm644 "$srcdir/agentics-terminal-0.1.4-x86_64.enc" "$pkgdir/opt/agentics/components/terminal/0.1.4/terminal-0.1.4-linux-amd64.enc"
53
+  install -dm755 "$pkgdir/usr/share/doc/agentics-terminal"
54
+  printf '%s\n' \
55
+    'agentics-terminal ships the encrypted Agentics terminal component.' \
56
+    'It is decrypted and executed at runtime by the Agentics launcher (gentics)' \
57
+    'and its managerd relay, which perform the sealed-box key exchange with the' \
58
+    'Agentics hub. Install and launch the Agentics launcher to use this component.' \
59
+    > "$pkgdir/usr/share/doc/agentics-terminal/README"
60
+}