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