summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4ba09ed21cb7a77cd852384aed978457280ba08b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
##
# shellcheck shell=bash
#
# Maintainer: pyamsoft <developer(dot)pyamsoft(at)gmail(dot)com>
##

_gitname=poke-monitor
# shellcheck disable=SC2034
pkgname=poke-monitor-git
# shellcheck disable=SC2034
pkgdesc="Poke connected DP and HDMI displays after suspend"
# shellcheck disable=SC2034
pkgver=r5.e7ec1cd
# shellcheck disable=SC2034
pkgrel=1
# shellcheck disable=SC2034
arch=('any')
# shellcheck disable=SC2034
makedepends=('git')
# shellcheck disable=SC2034
depends=('xorg-xrandr')
# shellcheck disable=SC2034
optdepends=(
  "xorg-server: For use under X11"
  "xorg-xwayland: For use under Xwayland"
)
# shellcheck disable=SC2034
provides=('poke-monitor')
# shellcheck disable=SC2034
conflicts=('poke-monitor')
# shellcheck disable=SC2034
license=('GPLv2')
# shellcheck disable=SC2034
url="https://github.com/pyamsoft/poke-monitor.git"

##
# The SHA256 is constantly changing since this is
# pulled from git so skip the verification check
##
# shellcheck disable=SC2034
sha256sums=('SKIP')
# shellcheck disable=SC2034
source=("${_gitname}::git+${url}#branch=main")

###############################################################################

pkgver() {
  # shellcheck disable=SC2154
  cd "$srcdir/$_gitname" || {
    msg "Error couldn't cd into $srcdir/$_gitname"
    return 1
  }

  # From
  # https://wiki.archlinux.org/index.php/VCS_package_guidelines#The_pkgver.28.29_function
  # If there are no tags then use number of revisions since beginning of the history:
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd "$srcdir/$_gitname" || {
    msg "Error couldn't cd into $srcdir/$_gitname"
    return 1
  }

  # Open up the umask in case you are running something more restrictive
  umask 0022

  # Mark the script executable
  chmod 755 "${_gitname}"

  # Ensure the __BIN_DIR__ is correct relative to the system expected path
  sed --in-place 's/__BIN_DIR__/\/usr\/bin/' "res/systemd/${_gitname}@.service"

  # shellcheck disable=SC2154
  mkdir -p "${pkgdir}/usr/bin"
  mkdir -p "${pkgdir}/usr/share/doc/${_gitname}"
  mkdir -p "${pkgdir}/usr/share/licenses/${_gitname}"
  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
  mkdir -p "${pkgdir}/usr/lib/systemd/system/"

  cp "${_gitname}" "${pkgdir}/usr/bin/${_gitname}"
  cp "LICENSE" "${pkgdir}/usr/share/licenses/${_gitname}/LICENSE"
  cp "README.md" "${pkgdir}/usr/share/doc/${_gitname}/README.md"
  cp "res/shell/bash/bash_completion" "${pkgdir}/usr/share/bash-completion/completions/${_gitname}"
  cp "res/systemd/${_gitname}@.service" "${pkgdir}/usr/lib/systemd/system/${_gitname}@.service"
}