summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 03e5836273ea0b36249ee6798ea99682c12db2cd (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# dreieck

_pkgname='dev_scream'
_typesuffix='-dkms'
_vcssuffix='-git'
pkgname="${_pkgname}${_typesuffix}${_vcssuffix}"
pkgver=r16.20230811.4bcd1f7
pkgrel=1
pkgdesc="Linux kernel module that creates a device '/dev/scream', similar to '/dev/zero' but outputting random letter combinations of 'aAHh' (screaming)."
url='https://github.com/matlink/dev_scream'
arch=(
  'any' # It builds binaries via DKMS _after_ module installation, for whatever architecture the current system runs on, so this package is regarded to be architecture independent.
)
license=('GPL-2.0-only')
provides=(
  "${_pkgname}"
  "${_pkgname}${_typesuffix}"
  "${_pkgname}${_vcssuffix}=${pkgver}"
)
conflicts=(
  "${_pkgname}"
  "${_pkgname}${_typesuffix}"
  "${_pkgname}${_vcssuffix}"
)
makedepends=(
  'git'
  'linux'
)
depends=(
  'dkms'
  'linux'
)
install='dev_scream-dkms.install'
source=(
  "${_pkgname}::git+${url}.git"
  "${_pkgname}-dkms.conf.in"
  "scream.modules-load.conf"
  "${install}"
)
sha256sums=(
  'SKIP'                                                             # Main source (latest git checkout from $url.git)
  '64c5fbe7d7f2cbc9915952ab2c74545a7cc4f32977baae2ba8e0b6a9f41af333' # ${_pkgname}-dkms.conf.in (dev_scream-dkms.conf.in)
  'e9b19eebf2d48369666e5e5657f6459ef9c14889d4a6737bd946e1a48fe82942' # scream.modules-load.conf
  'ae8deb764fd94fe1d002b7dfdd2b11fbe3e0dd6e743603b3702fe9db7a8c3088' # ${install} (dev_scream-dkms.install)
)

prepare() {
  cd "${srcdir}/${_pkgname}"

  ## Apply patches:

  if stat "${srcdir}"/*.patch > /dev/null 2>&1; then # Do only if at least one patch file is present
    for _patch in "${srcdir}"/*.patch; do
      printf '%s\n' "  -> Applying patch '$(basename "${_patch}")' ..."
      patch -N -p1 --follow-symlinks -i "${_patch}"
    done
  fi


  ## Create further documentation files:

  printf '%s\n' "  -> Creating 'website.url' information file ..."
  printf '%s\n' "${url}" > "${srcdir}/website.url"

  printf '%s\n' "  -> Creating 'git.log' information file ..."
  git log > "${srcdir}/git.log"
}

pkgver() {
  cd "${srcdir}/${_pkgname}"

  _rev="$(git rev-list --count HEAD)"
  _date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
  _hash="$(git rev-parse --short HEAD)"

  if [ -z "${_rev}" ]; then
    printf '%s\n' "  -> ERROR: Git Commit count could not be determined. Aborting." > /dev/stderr
  return 1
  else
    printf '%s' "r${_rev}.${_date}.${_hash}"
  fi
}

build() {
  cd "${srcdir}"

  printf '%s\n' "  -> Creating 'dkms.conf' ..."
  sed -e "s/@_PKGNAME@/${_pkgname}/" \
      -e "s/@PKGVER@/${pkgver}/" \
      "${_pkgname}-dkms.conf.in" > "${_pkgname}-dkms.conf"
}

package() {
  cd "${srcdir}"

  ## Install sources and dkms.conf:
  install -D -m644 -v "${srcdir}/${_pkgname}-dkms.conf" "${pkgdir}/usr/src/${_pkgname}-${pkgver}/dkms.conf"
  cp -rv "${srcdir}/${_pkgname}"/* "${pkgdir}/usr/src/${_pkgname}-${pkgver}"/

  ## Automatically load module at bootup:
  install -D -m644 -v "${srcdir}/scream.modules-load.conf" "${pkgdir}/usr/lib/modules-load.d/scream.conf"

  ## Install documentation files:
  for _docfile in "${srcdir}"/{"${_pkgname}/README.md","website.url","git.log"}; do
    install -D -m644 -v "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docfile}")"
  done
}