| Hash | Commit message | Author | Date | Files | + | - |
| 1 | commit d886ae930d58b7e5a06cfea1b722258360efd49c |
| 2 | Author: Connor Etherington <[email protected]> |
| 3 | Date: Wed Jul 15 06:37:11 2026 +0200 |
| 4 | |
| 5 | agentics-desktop : Agentics ecosystem package |
| 6 | --- |
| 7 | .SRCINFO | 13 +++++++++++++ |
| 8 | PKGBUILD | 20 ++++++++++++++++++++ |
| 9 | 2 files changed, 33 insertions(+) |
| 10 | |
| 11 | diff --git a/.SRCINFO b/.SRCINFO |
| 12 | new file mode 100644 |
| 13 | index 0000000..434395e |
| 14 | --- /dev/null |
| 15 | +++ b/.SRCINFO |
| 16 | @@ -0,0 +1,13 @@ |
| 17 | +pkgbase = agentics-desktop |
| 18 | + pkgdesc = Agentics Desktop - the PowerBoard wallpaper companion and desktop agent host |
| 19 | + pkgver = 0.1.34 |
| 20 | + pkgrel = 1 |
| 21 | + url = https://agentics.co.za |
| 22 | + arch = x86_64 |
| 23 | + license = custom |
| 24 | + options = !strip |
| 25 | + options = !debug |
| 26 | + source = agentics-desktop-0.1.34-x86_64.AppImage::https://software.agentics.co.za/agentics/x86_64/agentics-desktop-0.1.34-x86_64.AppImage |
| 27 | + sha512sums = 48323e47740d2d1e22792b0d4a2de141b98cf2eb8ae6f6c6f8e1dcde0552d58936eecef4081bb78e8b109434ed8c933c60c1739b49bf053e0cc66e60ef34f584 |
| 28 | + |
| 29 | +pkgname = agentics-desktop |
| 30 | diff --git a/PKGBUILD b/PKGBUILD |
| 31 | new file mode 100644 |
| 32 | index 0000000..befd563 |
| 33 | --- /dev/null |
| 34 | +++ b/PKGBUILD |
| 35 | @@ -0,0 +1,20 @@ |
| 36 | +# Maintainer: Connor Etherington <[email protected]> |
| 37 | +# --- |
| 38 | +pkgname=agentics-desktop |
| 39 | +pkgver=0.1.34 |
| 40 | +pkgrel=1 |
| 41 | +pkgdesc="Agentics Desktop - the PowerBoard wallpaper companion and desktop agent host" |
| 42 | +arch=('x86_64') |
| 43 | +url="https://agentics.co.za" |
| 44 | +license=('custom') |
| 45 | +depends=() |
| 46 | +options=('!strip' '!debug') |
| 47 | +source=("agentics-desktop-0.1.34-x86_64.AppImage::https://software.agentics.co.za/agentics/x86_64/agentics-desktop-0.1.34-x86_64.AppImage") |
| 48 | +sha512sums=('48323e47740d2d1e22792b0d4a2de141b98cf2eb8ae6f6c6f8e1dcde0552d58936eecef4081bb78e8b109434ed8c933c60c1739b49bf053e0cc66e60ef34f584') |
| 49 | + |
| 50 | +package() { |
| 51 | + install -Dm755 "$srcdir/agentics-desktop-0.1.34-x86_64.AppImage" "$pkgdir/opt/agentics/AgenticsDesktop.AppImage" |
| 52 | + install -dm755 "$pkgdir/usr/bin" |
| 53 | + printf '%s\n' '#!/bin/sh' 'exec /opt/agentics/AgenticsDesktop.AppImage "$@"' > "$pkgdir/usr/bin/agentics-desktop" |
| 54 | + chmod 755 "$pkgdir/usr/bin/agentics-desktop" |
| 55 | +} |