#!/usr/bin/env bun import { $ } from "bun" import { Script } from "@opencode-ai/script" if (!Script.preview) { // Calculate SHA values // kilocode_change start - archives now use '-' instead of '/' and are in archives/ subdirectory const arm64Sha = await $`sha256sum ./dist/archives/@kilocode-cli-linux-arm64.tar.gz | cut -d' ' -f1` .text() .then((x) => x.trim()) const x64Sha = await $`sha256sum ./dist/archives/@kilocode-cli-linux-x64.tar.gz | cut -d' ' -f1` .text() .then((x) => x.trim()) const macX64Sha = await $`sha256sum ./dist/archives/@kilocode-cli-darwin-x64.zip | cut -d' ' -f1` .text() .then((x) => x.trim()) const macArm64Sha = await $`sha256sum ./dist/archives/@kilocode-cli-darwin-arm64.zip | cut -d' ' -f1` .text() .then((x) => x.trim()) // kilocode_change end const [pkgver, _subver = ""] = Script.version.split(/(-.*)/, 2) // arch const binaryPkgbuild = [ "# Maintainer: dax", "# Maintainer: adam", "", "pkgname='kilo-bin'", `pkgver=${pkgver}`, `_subver=${_subver}`, "options=('!debug' '!strip')", "pkgrel=1", "pkgdesc='The AI coding agent built for the terminal.'", "url='https://github.com/Kilo-Org/kilo'", "arch=('aarch64' 'x86_64')", "license=('MIT')", "provides=('kilo')", "conflicts=('kilo')", "depends=('ripgrep')", "", `source_aarch64=("\${pkgname}_\${pkgver}_aarch64.tar.gz::https://github.com/Kilo-Org/kilo/releases/download/v\${pkgver}\${_subver}/kilo-linux-arm64.tar.gz")`, `sha256sums_aarch64=('${arm64Sha}')`, `source_x86_64=("\${pkgname}_\${pkgver}_x86_64.tar.gz::https://github.com/Kilo-Org/kilo/releases/download/v\${pkgver}\${_subver}/kilo-linux-x64.tar.gz")`, `sha256sums_x86_64=('${x64Sha}')`, "", "package() {", ' install -Dm755 ./kilo "${pkgdir}/usr/bin/kilo"', "}", "", ].join("\n") // Source-based PKGBUILD for kilo const sourcePkgbuild = [ "# Maintainer: dax", "# Maintainer: adam", "", "pkgname='kilo'", `pkgver=${pkgver}`, `_subver=${_subver}`, "options=('!debug' '!strip')", "pkgrel=1", "pkgdesc='The AI coding agent built for the terminal.'", "url='https://github.com/Kilo-Org/kilo'", "arch=('aarch64' 'x86_64')", "license=('MIT')", "provides=('kilo')", "conflicts=('kilo-bin')", "depends=('ripgrep')", "makedepends=('git' 'bun' 'go')", "", `source=("kilo-\${pkgver}.tar.gz::https://github.com/Kilo-Org/kilo/archive/v\${pkgver}\${_subver}.tar.gz")`, `sha256sums=('SKIP')`, "", "build() {", ` cd "kilo-\${pkgver}"`, ` bun install`, " cd ./packages/kilo", ` OPENCODE_CHANNEL=latest OPENCODE_VERSION=${pkgver} bun run ./script/build.ts --single`, "}", "", "package() {", ` cd "kilo-\${pkgver}/packages/kilo"`, ' mkdir -p "${pkgdir}/usr/bin"', ' target_arch="x64"', ' case "$CARCH" in', ' x86_64) target_arch="x64" ;;', ' aarch64) target_arch="arm64" ;;', ' *) printf "unsupported architecture: %s\\n" "$CARCH" >&2 ; return 1 ;;', " esac", ' libc=""', " if command -v ldd >/dev/null 2>&1; then", " if ldd --version 2>&1 | grep -qi musl; then", ' libc="-musl"', " fi", " fi", ' if [ -z "$libc" ] && ls /lib/ld-musl-* >/dev/null 2>&1; then', ' libc="-musl"', " fi", ' base=""', ' if [ "$target_arch" = "x64" ]; then', " if ! grep -qi avx2 /proc/cpuinfo 2>/dev/null; then", ' base="-baseline"', " fi", " fi", ' bin="dist/@kilocode/cli-linux-${target_arch}${base}${libc}/bin/kilo"', ' if [ ! -f "$bin" ]; then', ' printf "unable to find binary for %s%s%s\\n" "$target_arch" "$base" "$libc" >&2', " return 1", " fi", ' install -Dm755 "$bin" "${pkgdir}/usr/bin/kilo"', "}", "", ].join("\n") for (const [pkg, pkgbuild] of [ ["kilo-bin", binaryPkgbuild], ["kilo", sourcePkgbuild], ]) { for (let i = 0; i < 30; i++) { try { await $`rm -rf ./dist/aur-${pkg}` await $`git clone ssh://aur@aur.archlinux.org/${pkg}.git ./dist/aur-${pkg}` await $`cd ./dist/aur-${pkg} && git checkout master` await Bun.file(`./dist/aur-${pkg}/PKGBUILD`).write(pkgbuild) await $`cd ./dist/aur-${pkg} && makepkg --printsrcinfo > .SRCINFO` await $`cd ./dist/aur-${pkg} && git add PKGBUILD .SRCINFO` await $`cd ./dist/aur-${pkg} && git commit -m "Update to v${Script.version}"` await $`cd ./dist/aur-${pkg} && git push` break } catch (e) { continue } } } // Homebrew formula const homebrewFormula = [ "# typed: false", "# frozen_string_literal: true", "", "# This file was generated by GoReleaser. DO NOT EDIT.", "class Kilo < Formula", ` desc "The AI coding agent built for the terminal."`, ` homepage "https://github.com/Kilo-Org/kilo"`, ` version "${Script.version.split("-")[0]}"`, "", ` depends_on "ripgrep"`, "", " on_macos do", " if Hardware::CPU.intel?", ` url "https://github.com/Kilo-Org/kilo/releases/download/v${Script.version}/kilo-darwin-x64.zip"`, ` sha256 "${macX64Sha}"`, "", " def install", ' bin.install "kilo"', " end", " end", " if Hardware::CPU.arm?", ` url "https://github.com/Kilo-Org/kilo/releases/download/v${Script.version}/kilo-darwin-arm64.zip"`, ` sha256 "${macArm64Sha}"`, "", " def install", ' bin.install "kilo"', " end", " end", " end", "", " on_linux do", " if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?", ` url "https://github.com/Kilo-Org/kilo/releases/download/v${Script.version}/kilo-linux-x64.tar.gz"`, ` sha256 "${x64Sha}"`, " def install", ' bin.install "kilo"', " end", " end", " if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?", ` url "https://github.com/Kilo-Org/kilo/releases/download/v${Script.version}/kilo-linux-arm64.tar.gz"`, ` sha256 "${arm64Sha}"`, " def install", ' bin.install "kilo"', " end", " end", " end", "end", "", "", ].join("\n") await $`rm -rf ./dist/homebrew-tap` await $`git clone https://${process.env["GITHUB_TOKEN"]}@github.com/sst/homebrew-tap.git ./dist/homebrew-tap` await Bun.file("./dist/homebrew-tap/kilo.rb").write(homebrewFormula) await $`cd ./dist/homebrew-tap && git add kilo.rb` await $`cd ./dist/homebrew-tap && git commit -m "Update to v${Script.version}"` await $`cd ./dist/homebrew-tap && git push` }