# Maintainer: Christopher Cooper # Maintainer: Jérôme Poulin pkgname=claude-code pkgver=2.1.98 pkgrel=1 pkgdesc="An agentic coding tool that lives in your terminal" arch=('x86_64' 'aarch64') url="https://github.com/anthropics/claude-code" license=('LicenseRef-claude-code') depends=('bash') # Binary is a self-contained Bun executable with embedded JS/resources - stripping breaks it options=('!strip') optdepends=( 'git: allow Claude to use git' 'github-cli: interact with GitHub' 'glab: interact with GitLab' 'ripgrep: enhanced file search' 'tmux: agent team split panes' 'bubblewrap: sandboxing' 'socat: sandboxing' ) # This bucket is used in the official install script at https://claude.ai/install.sh # curl -fsSL https://claude.ai/install.sh | grep GCS_BUCKET _gcs_bucket="https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases" _license_update_ts=20260408 source=("cc-legal-${_license_update_ts}::https://code.claude.com/docs/en/legal-and-compliance.md") source_x86_64=("claude-${pkgver}-x86_64::${_gcs_bucket}/${pkgver}/linux-x64/claude") source_aarch64=("claude-${pkgver}-aarch64::${_gcs_bucket}/${pkgver}/linux-arm64/claude") sha256sums=('c04a21cf44168e80e8cd48a4e48a3c5ffdc7a5df86459ebb8f9911cd4f8c398b') sha256sums_x86_64=('d40827b5aa8d737a7eb68e3aad990b80e2521540a6bc8a405259b63b25d42ed8') sha256sums_aarch64=('67c0b9b7ed9c63f8524ecf5790805842f81d8322254dea849ecb8c7051f8df6b') package() { install -Dm755 "${srcdir}/claude-${pkgver}-${CARCH}" "${pkgdir}/opt/claude-code/bin/claude" # Create wrapper script to disable autoupdater install -dm755 "${pkgdir}/usr/bin" cat > "${pkgdir}/usr/bin/claude" << 'EOF' #!/bin/sh export DISABLE_AUTOUPDATER=1 exec /opt/claude-code/bin/claude "$@" EOF chmod 755 "${pkgdir}/usr/bin/claude" install -Dm644 "${srcdir}/cc-legal-${_license_update_ts}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }