Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions app-creativity/picoclaw/autobuild/build
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
abinfo "Downloading go mod dependencies ..."
make deps

abinfo "Building picoclaw Core ..."
make build

mkdir -pv "$PKGDIR"/usr/bin

if ab_match_arch amd64 || ab_match_arch arm64; then
abinfo "Building picoclaw Web UI ..."
make build-launcher
install -vm755 "$SRCDIR"/build/picoclaw-launcher \
"$PKGDIR"/usr/bin/picoclaw-launcher
fi

abinfo "Building picoclaw TUI ..."
make build-launcher-tui
install -vm755 "$SRCDIR"/build/picoclaw-launcher-tui \
"$PKGDIR"/usr/bin/picoclaw-launcher-tui

abinfo "Installing picoclaw ..."
make install \
INSTALL_PREFIX="$PKGDIR/usr"
7 changes: 7 additions & 0 deletions app-creativity/picoclaw/autobuild/defines
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
PKGNAME="picoclaw"
PKGDES="Ultra-lightweight personal AI assistant inspired by NanoBot"
PKGDEP="glibc nodejs"
BUILDDEP="go"
PKGSEC=utils

FAIL_ARCH="(loongson3)"
4 changes: 4 additions & 0 deletions app-creativity/picoclaw/spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
VER=0.2.6
SRCS="git::commit=tags/v${VER}::https://github.com/sipeed/picoclaw.git"
CHKSUMS="SKIP"
CHKUPDATE="github::repo=sipeed/picoclaw"