Files

43 lines
1.6 KiB
Tcl

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup golang 1.0
go.setup github.com/umputun/ralphex 1.6.0 v
revision 0
categories llm
maintainers {@sikmir disroot.org:sikmir} openmaintainer
license MIT
description Extended Ralph loop for autonomous AI-driven plan execution
long_description {*}${description}
homepage https://ralphex.com/
build.cmd make
build.pre_args-append \
REV=v${version} \
TAG=v${version}
build.args build
checksums rmd160 8c2ac73c00311fb7b496e1dc4851a49b06547bf8 \
sha256 55daac7de46183e16ee57a22e9527d342ac2c5a2ed6284a749d5a11f25aec6b8 \
size 8239037
destroot {
xinstall -m 0755 ${worksrcpath}/.bin/ralphex.v${version} ${destroot}${prefix}/bin/ralphex
set src_completion_dir ${worksrcpath}/completions
set bash_completion_dir ${destroot}${prefix}/etc/bash_completion.d
xinstall -d ${bash_completion_dir}
xinstall -m 644 ${src_completion_dir}/ralphex.bash ${bash_completion_dir}/ralphex
set fish_completion_dir ${destroot}${prefix}/share/fish/vendor_completions.d
xinstall -d ${fish_completion_dir}
xinstall -m 644 ${src_completion_dir}/ralphex.fish ${fish_completion_dir}/
set zsh_completion_dir ${destroot}${prefix}/share/zsh/site-functions
xinstall -d ${zsh_completion_dir}
xinstall -m 644 ${src_completion_dir}/ralphex.zsh ${zsh_completion_dir}/_ralphex
}