fix pacman pkg
Some checks failed
release / Release (push) Failing after 11s

This commit is contained in:
2026-02-28 15:25:54 +09:00
parent 756aa9825d
commit df6b07743b
9 changed files with 96 additions and 45 deletions

24
pkg/aigpt/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
pkgname=aigpt
pkgver=0.0.1
pkgrel=1
pkgdesc='ai memory and personality system for aios'
arch=('x86_64')
url='https://git.syui.ai/ai/gpt'
license=('MIT')
depends=('gcc-libs')
makedepends=('rust' 'cargo' 'git')
options=('!lto')
source=("git+https://git.syui.ai/ai/gpt.git#branch=main")
sha256sums=('SKIP')
build() {
cd gpt
export CC=gcc
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=gcc
cargo build --release
}
package() {
cd gpt
install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}

24
pkg/ailog/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
pkgname=ailog
pkgver=0.0.1
pkgrel=1
pkgdesc='atproto blog cli for aios'
arch=('x86_64')
url='https://git.syui.ai/ai/log'
license=('MIT')
depends=('gcc-libs')
makedepends=('rust' 'cargo' 'git')
options=('!lto')
source=("git+https://git.syui.ai/ai/log.git#branch=main")
sha256sums=('SKIP')
build() {
cd log
export CC=gcc
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=gcc
cargo build --release
}
package() {
cd log
install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}

24
pkg/aishell/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
pkgname=aishell
pkgver=0.0.1
pkgrel=1
pkgdesc='custom shell for aios'
arch=('x86_64')
url='https://git.syui.ai/ai/shell'
license=('MIT')
depends=('gcc-libs')
makedepends=('rust' 'cargo' 'git')
options=('!lto')
source=("git+https://git.syui.ai/ai/shell.git#branch=main")
sha256sums=('SKIP')
build() {
cd shell
export CC=gcc
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=gcc
cargo build --release
}
package() {
cd shell
install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}