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