Files
openai-codex-bin/PKGBUILD
github-actions[bot] a65e9c9650 Update to 0.96.0
2026-02-04 18:46:34 +00:00

53 lines
1.8 KiB
Bash

#!/usr/bin/env bash
# shellcheck disable=SC2034
# Maintainer: Chmouel Boudjnah <chmouel@chmouel.com>
pkgname=openai-codex-bin
pkgver=0.96.0
pkgrel=3
pkgdesc="Arch Linux package for OpenAI's Codex CLI - Auto Updated"
arch=('x86_64' 'aarch64')
url="https://github.com/openai/codex"
license=('Apache')
provides=('openai-codex')
conflicts=('openai-codex' 'openai-codex-autoup-bin')
replaces=('openai-codex-autoup-bin')
optdepends=(
'git: for working with git repositories'
'ripgrep: accelerated large-repo search'
)
keywords=('codex' 'openai' 'cli' 'ai' 'machine-learning' 'chatgpt')
source_x86_64=(
"codex-${pkgver}-x86_64.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-x86_64-unknown-linux-gnu.tar.gz"
)
sha256sums_x86_64=('13f81fc74398f079e31cb7db91a275a5ee3df8c06ad01cabf20ca63d5f4c3317')
sha256sums_aarch64=('f21aee63715c6f96d8c6bc7db2828d3916317f80cf19b611c72f51d20f010ab2')
source_aarch64=(
"codex-${pkgver}-aarch64.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-aarch64-unknown-linux-gnu.tar.gz"
)
package() {
cd "$srcdir" || exit
if [[ "$CARCH" == "x86_64" ]]; then
install -Dm755 "codex-x86_64-unknown-linux-gnu" "$pkgdir/usr/bin/codex"
fi
if [[ "$CARCH" == "aarch64" ]]; then
install -Dm755 "codex-aarch64-unknown-linux-gnu" "$pkgdir/usr/bin/codex"
fi
# Install completions
mkdir -p "${pkgdir}/usr/share/bash-completion/completions/"
mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
# Generate completion scripts
"${pkgdir}/usr/bin/codex" completion bash >codex.bash
"${pkgdir}/usr/bin/codex" completion zsh >codex.zsh
# Install completion files
install -Dm644 "codex.bash" "${pkgdir}/usr/share/bash-completion/completions/codex"
install -Dm644 "codex.zsh" "${pkgdir}/usr/share/zsh/site-functions/_codex"
}