41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
||
# shellcheck disable=SC2034
|
||
# Maintainer: Chmouel Boudjnah <chmouel@chmouel.com>
|
||
pkgname=openai-codex-bin
|
||
pkgver=0.95.0
|
||
pkgrel=2
|
||
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=('1df218a95b69fe7df2a089b81fbbb3704443133c777a8346cc7cfa620cf12517')
|
||
sha256sums_aarch64=('608455d98b49db5fc95715dbe7c235e96b99c835355e20093c727bfd63f794ed')
|
||
|
||
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
|
||
}
|