blob: b51cde259ec1a737d6e06655b6648dfee1b8f04a (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# shellcheck disable=SC2034
# shellcheck disable=SC2154
# Maintainer: liupold <rohhnch@protonmail.ch>
pkgname=pidswallow-dev-git
pkgrel=8
pkgver=2.0.d # dev
pkgdesc="A script to swallow your terminal automatically"
arch=(x86_64)
url="https://github.com/Liupold/pidswallow/tree/dev"
license=('APACHE')
depends=(xdo xorg-xprop xorg-xev xorg-xwininfo sh)
makedepends=(git)
checkdepends=(shellcheck)
optdepends=('xdotool: Workspace/Desktop Management')
provides=(pidswallow)
conflicts=(pidswallow)
source=("$pkgname::git+https://github.com/Liupold/pidswallow")
sha256sums=("SKIP")
pkgver() {
cd "$pkgname" || return 1
{
git checkout dev
git stash
git pull
} >/dev/null 2>&1
printf "2.0.d.r%s.%s" \
"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
check() {
cd "$pkgname" || return 1
git checkout dev > /dev/null 2>&1
shellcheck "./pidswallow"
}
package() {
cd "$pkgname" || return 1
install -Dm755 "./pidswallow" "$pkgdir/usr/bin/pidswallow"
install -Dm644 "./man/pidswallow.1" "$pkgdir/usr/local/man/man1/pidswallow.1"
install -Dm644 "./README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
}
|