enprot 0.5.21

Engyon Protected Text (EPT) — confidentiality processor and capability ledger
# enprot on Arch Linux

Two AUR packages, mirroring the upstream Rust pattern:

| Package | Description |
|---|---|
| **`enprot-bin`** | Prebuilt binary from GitHub Releases. ~5 MB, no Rust toolchain required. |
| **`enprot`** | Build from source with cargo. Slower install, fully reproducible. |

## Install

```sh
# Prebuilt:
paru -S enprot-bin   # or yay -S enprot-bin

# Build from source:
paru -S enprot
```

Both packages ship the binary, man page, and shell completions
(bash / fish / zsh).

## Maintainer notes

These PKGBUILDs live in the source tree at `distro/arch/`. To publish
to the AUR:

```sh
# One-time setup
git clone ssh://aur@aur.archlinux.org/enprot-bin.git ~/src/enprot-bin
git clone ssh://aur@aur.archlinux.org/enprot.git     ~/src/enprot

# Per release
cp distro/arch/enprot-bin/PKGBUILD ~/src/enprot-bin/
cp distro/arch/enprot-bin/.SRCINFO ~/src/enprot-bin/   # generated by makepkg --printsrcinfo
(cd ~/src/enprot-bin && makepkg --printsrcinfo > .SRCINFO && git add -A && git commit -m "v0.5.11" && git push)

# Same for enprot (the build-from-source variant).
```

The `sha256sums=('SKIP')` line on the `-bin` variant is a placeholder.
Run `updpkgsums` (from `pacman-contrib`) after each version bump to
fill in the real checksums from the new release tarball.