17 lines
600 B
Bash
17 lines
600 B
Bash
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}"
|
|
}
|