Koca turns a single build file into native packages for every operating system.
curl -fsSL https://go.koca.dev/install | bashA familiar, bash-flavored build file. Metadata, sources, and a package() function. That is all Koca needs.
# Package Claude Code for every platform pkgname=claude-codepkgver=2.1.50pkgrel=1pkgdesc='Terminal-based AI coding assistant'arch=('x64')source=("https://storage.googleapis.com/.../claude") package() { install -Dm 755 "${srcdir}/claude" "${pkgdir}/usr/bin/claude"}A single bash-flavored build file compiles to native packages for Linux, macOS, and Windows. No per-platform config to maintain.
Koca emits the formats your users already trust (.deb, .rpm, .pkg, .exe), so installs feel first-party, not bolted on.
A Rust backend keeps resolution, fetching, and packaging tight. Builds finish in the time other tools spend warming up.
If you've written a PKGBUILD, you already know Koca. pkgname, pkgver, a package() function. Nothing new to learn.
curl -fsSL https://go.koca.dev/install | bash