blob: 91707d4e664831e6d8ffea4ebddd37092f3cfec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: dax
# Maintainer: adam
pkgname='opencode'
pkgver=1.1.49
_subver=
options=('!debug' '!strip')
pkgrel=1
pkgdesc='The AI coding agent built for the terminal.'
url='https://github.com/anomalyco/opencode'
arch=('aarch64' 'x86_64')
license=('MIT')
provides=('opencode')
conflicts=('opencode-bin')
depends=('ripgrep')
makedepends=('git' 'bun' 'go')
source=("opencode-${pkgver}.tar.gz::https://github.com/anomalyco/opencode/archive/v${pkgver}${_subver}.tar.gz")
sha256sums=('SKIP')
build() {
cd "opencode-${pkgver}"
bun install
cd ./packages/opencode
OPENCODE_CHANNEL=latest OPENCODE_VERSION=1.1.49 bun run ./script/build.ts --single
}
package() {
cd "opencode-${pkgver}/packages/opencode"
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/opencode-linux-${target_arch}${base}${libc}/bin/opencode"
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/opencode"
}
|