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