blob: 486948c54382cdbb85826a7456f1d23f0bb3e660 (
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
|
##
# Maintainer: pyamsoft <developer(dot)pyamsoft(at)gmail(dot)com>
##
pkgname=pstate-frequency
# shellcheck disable=SC2034
pkgdesc="Easily control Intel p-state driver"
# shellcheck disable=SC2034
pkgver=3.15.2
# shellcheck disable=SC2034
pkgrel=1
# shellcheck disable=SC2034
arch=('any')
# shellcheck disable=SC2034
makedepends=()
# shellcheck disable=SC2034
depends=('coreutils' 'grep' 'awk')
# shellcheck disable=SC2034
optdepends=()
# shellcheck disable=SC2034
provides=('pstate-frequency')
# shellcheck disable=SC2034
conflicts=('pstate-frequency')
# shellcheck disable=SC2034
license=('GPL2')
# shellcheck disable=SC2034
url="https://github.com/pyamsoft/pstate-frequency"
# shellcheck disable=SC2034
backup=('etc/pstate-frequency.d/00-auto.plan'
'etc/pstate-frequency.d/01-powersave.plan'
'etc/pstate-frequency.d/02-balanced.plan'
'etc/pstate-frequency.d/03-performance.plan'
'etc/pstate-frequency.d/04-max.plan')
# shellcheck disable=SC2034
source=(
"${url}/archive/${pkgver}.zip"
"00-fix-prefix.patch")
# shellcheck disable=SC2034
sha256sums=('de9949f25ef00804ffb1439de39748a7a8a614a93610f8f4b981e1e51062499d'
'e5423df20c03ef19448a78a1ae39e630d90f63c6c4e0962296ad292665575f0d')
prepare() {
# shellcheck disable=SC2154
cd "${srcdir}/${pkgname}-${pkgver}" || {
msg "Failed to cd into ${srcdir}/${pkgname}-${pkgver}"
return 1
}
# Apply patches
patch -p1 -i "${srcdir}/00-fix-prefix.patch"
# Disabled by default to conform to AUR packaging
# best practices. It is highly recommended that you
# enable the line to allow for editing the config.mk file
#
# make DESTDIR="${pkgdir}" edit
}
package() {
# shellcheck disable=SC2154
cd "${srcdir}/${pkgname}-${pkgver}" || {
msg "Failed to cd into ${srcdir}/${pkgname}-${pkgver}"
return 1
}
# shellcheck disable=SC2154
make DESTDIR="${pkgdir}" install
}
|