add pacman pkg
All checks were successful
release / Release (push) Successful in 6m30s

This commit is contained in:
2026-03-02 16:40:45 +09:00
parent 841f630249
commit 2f2194c3ab
5 changed files with 72 additions and 1 deletions

21
pkg/aigpt/PKGBUILD Normal file
View File

@@ -0,0 +1,21 @@
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')
source=("git+https://git.syui.ai/ai/gpt.git#branch=main")
sha256sums=('SKIP')
build() {
cd gpt
cargo build --release
}
package() {
cd gpt
install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}