blob: d8ebe0bab5ba96440194f5018f8ce7a75e4f75c5 (
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
|
# Maintainer: Clément Hamada <clementhamada@protonmail.com>
pkgname=swaylock-blur-fast-git
pkgver=r1.2aca716
pkgrel=1
pkgdesc="Fast and configurable script to run swaylock with blurred screenshots."
arch=('any')
url="https://github.com/ClemaX/swaylock-blur-fast"
license=('MIT')
depends=('sway' 'swaylock' 'grim' 'jq')
makedepends=()
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/ClemaX/swaylock-blur-fast.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/${pkgname%-git}"
install swaylock-blur -Dt "$pkgdir/usr/bin"
}
|