blob: 4ec7c8202a9caa777cf1b401ac1c9349939b2baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Areskul <areskul@areskul.com>
pkgname="pipelight"
pkgrel=1
pkgver=0.7.20
pkgdesc="A Rust based quick automation tool"
arch=("any")
url=https://packages.pipelight.dev/$pkgname-$pkgver-$pkgrel-any.pkg.tar.zst
license=('GPL2')
depends=(deno watchexec)
makedepends=(git make cargo)
provides=("pipelight")
conflicts=("pipelight-git")
source=($url)
md5sums=('SKIP') #autofill using updpkgsums
pre-install() {
mkdir -p /var/log/pipelight
#cp pipelight.bash /usr/share/bash-completion/completions/pipelight
#cp _pipelight /usr/share/zsh/site-functions/
}
url() {
https://packages.pipelight.dev/$pkgname-$pkgver-$pkgrel-any.pkg.tar.zst
}
# Update with
# makepkg --printsrcinfo > .SRCINFO
# gitu
|