24 lines
707 B
Bash
24 lines
707 B
Bash
# Maintainer: JOLIMAITRE Matthieu <matthieu@imagevo.fr>
|
|
|
|
pkgname=kub-tcp
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="TODO list management service."
|
|
url="https://git.barnulf.net/mb/kub-tcp"
|
|
license=("GPL-3.0+")
|
|
arch=("x86_64")
|
|
makedepends=("deno")
|
|
depends=("ollama")
|
|
provides=("kub-tcp-service" "todo")
|
|
conflicts=("kub-tcp-service" "todo")
|
|
source=("git+https://git.barnulf.net/mb/kub-tcp.git#branch=master")
|
|
sha256sums=("SKIP")
|
|
|
|
OPTIONS=(!strip !docs libtool emptydirs)
|
|
|
|
package() {
|
|
kub-tcp/build.sh
|
|
mkdir -p "$pkgdir/usr/bin/" "$pkgdir/usr/lib/systemd/user/"
|
|
install -Dm755 kub-tcp/target/kub-tcp-service "$pkgdir/usr/bin/"
|
|
install -Dm644 kub-tcp/kub-tcp.service "$pkgdir/usr/lib/systemd/user/"
|
|
}
|