Files
os/pkg/aishell/PKGBUILD
syui 2f2194c3ab
All checks were successful
release / Release (push) Successful in 6m30s
add pacman pkg
2026-03-02 16:40:45 +09:00

22 lines
423 B
Bash

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