add codex acp

This commit is contained in:
2025-10-24 21:47:39 -07:00
parent e52b3c4633
commit 0ce343308b
3 changed files with 33 additions and 0 deletions

16
codex-acp/PKGBUILD Normal file
View File

@@ -0,0 +1,16 @@
pkgname=codex-acp
pkgver=0.3.9
pkgrel=1
pkgdesc="Command-line companion for the Zed Codex AI code completion system"
arch=('x86_64')
url="https://github.com/zed-industries/codex-acp"
license=('Apache-2.0')
depends=('glibc' 'openssl' 'gcc-libs')
provides=("${pkgname}")
conflicts=("${pkgname}")
source=("https://github.com/zed-industries/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}-x86_64-unknown-linux-gnu.tar.gz")
sha256sums=('b91fcb8ffd990cb6be9e8e841477e45c83e8bdfc97fabee6bc4285c0c4591969')
package() {
install -Dm755 "${srcdir}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}