fix: add cmake to PKGBUILD makedepends
All checks were successful
CI / test (pull_request) Successful in 1m33s

aws-lc-sys (vendored TLS dependency) shells out to cmake at build
time to compile AWS-LC's C sources. cmake isn't part of Arch's
base-devel group, so a clean build host with only base-devel, cargo,
and git installed would fail partway through cargo build.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013XCcBkpdbUxSEeofhgAueS
This commit is contained in:
Austin Schaefer 2026-08-24 13:42:21 +02:00
parent b0ebe933d3
commit fa4b78a7e0

View file

@ -7,7 +7,7 @@ arch=('x86_64')
url="https://code.austinschaefer.com/schaefera/doubleo7" url="https://code.austinschaefer.com/schaefera/doubleo7"
license=('custom') license=('custom')
depends=('gcc-libs') depends=('gcc-libs')
makedepends=('cargo' 'git') makedepends=('cargo' 'git' 'cmake')
provides=('doubleo7') provides=('doubleo7')
conflicts=('doubleo7') conflicts=('doubleo7')
source=("$pkgname::git+ssh://git@51.15.208.55:22222/schaefera/doubleo7.git") source=("$pkgname::git+ssh://git@51.15.208.55:22222/schaefera/doubleo7.git")