summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 079cbf7cf546fe77e2fe36f3d3b4f7afb9a6b902 (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# shellcheck disable=SC2034
# shellcheck disable=SC2154
# Maintainer: liupold <rohhnch@protonmail.ch>

pkgname=pidswallow-dev-git
pkgrel=1
pkgver=2.0.d # dev
pkgdesc="A script to swallow your terminal automatically"
arch=(x86_64)
url="https://github.com/Liupold/pidswallow"
license=('APACHE')
depends=(xdotool)
makedepends=(git)
checkdepends=(shellcheck)
provides=(pidswallow)
conflicts=(pidswallow)

source=("$pkgname::git+$url")
sha256sums=("SKIP")

pkgver() {
        cd "$pkgname" || return 1
        git checkout dev > /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 "./README.md" "$pkgdir/usr/share/doc/$pkgname"
}