1 Commits

Author SHA1 Message Date
0ce343308b add codex acp 2025-10-24 21:47:39 -07:00
4 changed files with 33 additions and 6 deletions

16
codex-acp/.SRCINFO Normal file
View File

@@ -0,0 +1,16 @@
pkgbase = codex-acp
pkgdesc = Command-line companion for the Zed Codex AI code completion system
pkgver = 0.3.8
pkgrel = 1
url = https://github.com/zed-industries/codex-acp
arch = x86_64
license = Apache-2.0
depends = glibc
depends = openssl
depends = gcc-libs
provides = codex-acp
conflicts = codex-acp
source = https://github.com/zed-industries/codex-acp/releases/download/v0.3.8/codex-acp-0.3.8-x86_64-unknown-linux-gnu.tar.gz
sha256sums = 88c5715cbe8bbfec87c3605ea6a0e22262c2f45ff8937f4b07982fb340fbeba7
pkgname = codex-acp

1
codex-acp/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
codex-acp*

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}"
}

View File

@@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}