agentics


Logs | Files | GitLab


1
commit 98a27e50ef5e07e5dbf3f0ebf2db1e948d543564 (HEAD -> master, origin/master)
2
Author: Connor Etherington <[email protected]>
3
Date:   Wed Jul 15 06:50:39 2026 +0200
4
5
    agentics : Agentics ecosystem package
6
---
7
 .SRCINFO | 10 +++++++---
8
 PKGBUILD | 25 ++++++++++++++++---------
9
 2 files changed, 23 insertions(+), 12 deletions(-)
10
11
diff --git a/.SRCINFO b/.SRCINFO
12
index 186e246..ac9b393 100644
13
--- a/.SRCINFO
14
+++ b/.SRCINFO
15
@@ -1,9 +1,13 @@
16
 pkgbase = agentics
17
-	pkgdesc = Agentics - The voice-driven AI platform by AgenticsAI (placeholder, official release imminent)
18
-	pkgver = 0.0.1
19
+	pkgdesc = Agentics - the voice-driven AI platform launcher, the desktop front door for the entire Agentics ecosystem
20
+	pkgver = 0.1.67
21
 	pkgrel = 1
22
 	url = https://agentics.co.za
23
-	arch = any
24
+	arch = x86_64
25
 	license = custom
26
+	options = !strip
27
+	options = !debug
28
+	source = agentics-0.1.67-x86_64.AppImage::https://repo.agentics.co.za/x86_64/agentics-0.1.67-x86_64.AppImage
29
+	sha512sums = 569f836f2f71b8206bc71714941d575c23de24ea94bf2457c0d60ef553c0d41b66baf2611803b0f4b3d2ddba7a65e7a4efd2ef584714e67df2a08328637e7a1f
30
 
31
 pkgname = agentics
32
diff --git a/PKGBUILD b/PKGBUILD
33
index 5ccc591..2758f84 100644
34
--- a/PKGBUILD
35
+++ b/PKGBUILD
36
@@ -1,19 +1,26 @@
37
 # Maintainer: Connor Etherington <[email protected]>
38
 # ---
39
 pkgname=agentics
40
-pkgver=0.0.1
41
+pkgver=0.1.67
42
 pkgrel=1
43
-pkgdesc="Agentics - The voice-driven AI platform by AgenticsAI (placeholder, official release imminent)"
44
-arch=(any)
45
+pkgdesc="Agentics - the voice-driven AI platform launcher, the desktop front door for the entire Agentics ecosystem"
46
+arch=('x86_64')
47
 url="https://agentics.co.za"
48
 license=('custom')
49
+depends=()
50
+options=('!strip' '!debug')
51
+source=("agentics-0.1.67-x86_64.AppImage::https://repo.agentics.co.za/x86_64/agentics-0.1.67-x86_64.AppImage")
52
+sha512sums=('569f836f2f71b8206bc71714941d575c23de24ea94bf2457c0d60ef553c0d41b66baf2611803b0f4b3d2ddba7a65e7a4efd2ef584714e67df2a08328637e7a1f')
53
 
54
 package() {
55
-  install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
56
+  install -Dm755 "$srcdir/agentics-0.1.67-x86_64.AppImage" "$pkgdir/opt/agentics/Agentics.AppImage"
57
+  install -dm755 "$pkgdir/usr/bin"
58
+  printf '%s\n' '#!/bin/sh' 'exec /opt/agentics/Agentics.AppImage "$@"' > "$pkgdir/usr/bin/agentics"
59
+  chmod 755 "$pkgdir/usr/bin/agentics"
60
+  install -dm755 "$pkgdir/usr/share/applications"
61
   printf '%s\n' \
62
-    "Agentics - https://agentics.co.za" \
63
-    "" \
64
-    "This package name is reserved by AgenticsAI (Pty) Ltd." \
65
-    "The official Agentics release will be published here imminently." \
66
-    > "${pkgdir}/usr/share/doc/${pkgname}/README"
67
+    '[Desktop Entry]' 'Type=Application' 'Name=Agentics' \
68
+    'Comment=Voice-driven AI platform' 'Exec=/usr/bin/agentics %U' \
69
+    'Icon=agentics' 'Categories=Utility;Network;AudioVideo;' 'Terminal=false' \
70
+    > "$pkgdir/usr/share/applications/agentics.desktop"
71
 }