| Hash | Commit message | Author | Date | Files | + | - |
| 1 | commit b02b0e873042851a245ae036e142d38a21447a31 |
| 2 | Author: Connor Etherington <[email protected]> |
| 3 | Date: Wed Jul 15 06:37:11 2026 +0200 |
| 4 | |
| 5 | agentics-agentboard : 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..5672d7e |
| 14 | --- /dev/null |
| 15 | +++ b/.SRCINFO |
| 16 | @@ -0,0 +1,14 @@ |
| 17 | +pkgbase = agentics-agentboard |
| 18 | + pkgdesc = Agentics AgentBoard - the desktop PowerBoard host, an encrypted Agentics component decrypted and run at runtime by the Agentics launcher |
| 19 | + pkgver = 0.3.280 |
| 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-agentboard-0.3.280-x86_64.enc::https://software.agentics.co.za/agentics/x86_64/agentics-agentboard-0.3.280-x86_64.enc |
| 28 | + sha512sums = a9c2e07656eabcc8c1abbc6c30297de8039c6019f53904b2f8e6248d6ccad001bb745953f407d1fc91e9d15e54608df7d233d8aaa76e7b84bde918424abd14a1 |
| 29 | + |
| 30 | +pkgname = agentics-agentboard |
| 31 | diff --git a/PKGBUILD b/PKGBUILD |
| 32 | new file mode 100644 |
| 33 | index 0000000..acc0c2f |
| 34 | --- /dev/null |
| 35 | +++ b/PKGBUILD |
| 36 | @@ -0,0 +1,24 @@ |
| 37 | +# Maintainer: Connor Etherington <[email protected]> |
| 38 | +# --- |
| 39 | +pkgname=agentics-agentboard |
| 40 | +pkgver=0.3.280 |
| 41 | +pkgrel=1 |
| 42 | +pkgdesc="Agentics AgentBoard - the desktop PowerBoard host, 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-agentboard-0.3.280-x86_64.enc::https://software.agentics.co.za/agentics/x86_64/agentics-agentboard-0.3.280-x86_64.enc") |
| 49 | +sha512sums=('a9c2e07656eabcc8c1abbc6c30297de8039c6019f53904b2f8e6248d6ccad001bb745953f407d1fc91e9d15e54608df7d233d8aaa76e7b84bde918424abd14a1') |
| 50 | + |
| 51 | +package() { |
| 52 | + install -Dm644 "$srcdir/agentics-agentboard-0.3.280-x86_64.enc" "$pkgdir/opt/agentics/components/agentboard/0.3.280/agentboard-0.3.280-linux-amd64.enc" |
| 53 | + install -dm755 "$pkgdir/usr/share/doc/agentics-agentboard" |
| 54 | + printf '%s\n' \ |
| 55 | + 'agentics-agentboard ships the encrypted Agentics agentboard 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-agentboard/README" |
| 60 | +} |