blob: 82dd6ab41e97895baca897477b431ca8936009af (
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
|
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: adrien1018 (https://aur.archlinux.org/account/adrien1018)
# Contributor: fs4000
# Contributor: trapanator
# Contributor: tomprogrammer
_pkgbase=phc-intel-dkms-stable
pkgbase="${_pkgbase}-git"
_pkgname="${_pkgbase}"
pkgname="${pkgbase}"
groups=(
'linux-phc'
'phc-intel'
)
pkgver=0.3.2.rev47.r55.20231030.984446e
_phcver="$(awk -F. '{print $1"."$2"."$3}' <<<"${pkgver}")"
pkgrel=1
pkgdesc="Frequency driver for Intel CPUs with undervolting feature. DKMS-based kernel module, stable branch, latest git checkout."
url="https://gitlab.com/linux-phc/phc-intel"
arch=('any')
license=('GPL2')
depends=(
'dkms'
)
makedepends=(
'git'
)
optdepends=(
'phc-intel-scripts: To control the driver.'
)
provides=(
'linux-phc'
"${_pkgname}=${pkgver}"
"phc-intel-dkms=${pkgver}"
"phc-intel-patch=${pkgver}" # It provides also the kernel patches.
"PHC-INTEL-MODULE" # This means kernel-side support; packages providing kernel module, but also kernel packages which have that builtin, can set this.
)
conflicts=(
"${_pkgname}"
"phc-intel-dkms"
)
source=(
"${_pkgbase}::git+${url}.git"
dkms.conf.in
)
sha256sums=(
'SKIP'
'9162c25d0df436a00d8b45d9e97c24a1f2999f5b8a4f78f2995df15d2d31baa7' # dkms.conf.in
)
prepare() {
cd "${srcdir}/${_pkgbase}"
# ## Switch to stable branch -- not needed, since stable is the default, and when doing it here then it would fail if the currently running kernel headers are not installed (e.g. due to a recent upgrade):
# make canny
## Generate GIT log
git log > "${srcdir}/git.log"
}
pkgver() {
cd "${srcdir}/${_pkgbase}"
_ver="$(grep -E '^[[:space:]]*VERSION[[:space:]]*=' Makefile | tail -n1 | sed -E -e 's|^[[:space:]]*VERSION[[:space:]]*=[[:space:]]*||' -e 's|[[:space:]]*#.*$||')"
_upstreamrev="$(git describe --tags)"
_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 "${_ver}" ]; then
error "Could not determine version."
return 1
else
printf '%s' "${_ver}.${_upstreamrev}.r${_rev}.${_date}.${_hash}"
fi
}
build() {
cd "${srcdir}"
sed -E -e "s|%%VERSION%%|${pkgver}|g" dkms.conf.in > dkms.conf
}
package() {
cd "${srcdir}/${_pkgbase}"
umask 022
install -dvm755 "${pkgdir}/usr/src/phc-intel-${pkgver}"
install -Dvm644 "${srcdir}/dkms.conf" "${pkgdir}/usr/src/phc-intel-${pkgver}/dkms.conf"
install -Dvm644 "phc-intel.modprobe" "${pkgdir}/usr/lib/modprobe.d/phc-intel.conf"
cp -Rv inc Makefile "${pkgdir}/usr/src/phc-intel-${pkgver}"/
for _docfile in changelog README.1st "${srcdir}/git.log"; do
install -Dvm644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docfile}")"
done
install -dvm755 "${pkgdir}/usr/share/doc/${_pkgname}/docs"
cp -rv docs/* "${pkgdir}/usr/share/doc/${_pkgname}/docs"/
install -Dvm644 gpl-2.0.txt "${pkgdir}/usr/share/licenses/${pkgname}/gpl-2.0.txt"
ln -svf "/usr/share/licenses/${pkgname}/gpl-2.0.txt" "${pkgdir}/usr/share/doc/${_pkgname}/LICENSE"
}
|