forked from marfrit/marfrit-packages
23 lines
1023 B
Bash
23 lines
1023 B
Bash
# Maintainer: Markus Fritsche <mfritsche@reauktion.de>
|
|
# Home Infrastructure Specialist subagent + skill for Claude Code.
|
|
# Source of truth: git.reauktion.de/marfrit/claude-his-agent
|
|
|
|
pkgname=claude-his-agent
|
|
pkgver=0.1.1
|
|
pkgrel=1
|
|
pkgdesc="Home Infrastructure Specialist subagent + skill for Claude Code (mfritsche home infra)"
|
|
arch=('any')
|
|
url="https://git.reauktion.de/marfrit/claude-his-agent"
|
|
license=('custom')
|
|
depends=('bash')
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://git.reauktion.de/marfrit/claude-his-agent/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('6479a9718a442f81ed2e339e83b4cfc2e73a27f5f449bfca12ad22e1bfde9eb7')
|
|
|
|
package() {
|
|
cd "${pkgname}"
|
|
install -Dm644 agents/his.md "${pkgdir}/usr/share/claude-agents/his.md"
|
|
install -Dm644 skills/his/SKILL.md "${pkgdir}/usr/share/claude-skills/his/SKILL.md"
|
|
install -Dm755 scripts/claude-his-install "${pkgdir}/usr/bin/claude-his-install"
|
|
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
|
|
}
|