Package Details: auto-cpufreq-git 1.9.6.r3.gff72e1e-2

Git Clone URL: https://aur.archlinux.org/auto-cpufreq-git.git (read-only, click to copy)
Package Base: auto-cpufreq-git
Description: Automatic CPU speed & power optimizer
Upstream URL: https://github.com/AdnanHodzic/auto-cpufreq
Licenses: LGPL-3.0
Conflicts: auto-cpufreq
Provides: auto-cpufreq
Submitter: crian
Maintainer: crian
Last Packager: crian
Votes: 19
Popularity: 0.030934
First Submitted: 2020-01-07 09:54 (UTC)
Last Updated: 2022-10-21 14:32 (UTC)

Dependencies (10)

Required by (0)

Sources (2)

Pinned Comments

OlexandrCh commented on 2020-08-13 20:44 (UTC) (edited on 2020-08-13 20:44 (UTC) by OlexandrCh)

Currently, we don't need to run --install on AUR
After installing from AUR, we need to start the systemd service.
systemctl enable auto-cpufreq
systemctl start auto-cpufreq

and check if it enabled and running with
systemctl status auto-cpufreq

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

yochananmarqos commented on 2020-08-10 01:06 (UTC)

Please remove the v from the tag with s/^v//:

pkgver() {
    cd "$srcdir/${pkgname%-git}"
    git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

yochananmarqos commented on 2020-08-06 20:14 (UTC)

inxi is also required with the --debug flag.

yochananmarqos commented on 2020-08-05 22:24 (UTC)

This no longer requires python-power, see this commit.

I had to tweak a few things, see my updated PKGBUILD.

crian commented on 2020-05-19 12:56 (UTC)

@Asutorufa fixed

yochananmarqos commented on 2020-05-18 21:26 (UTC)

@Asutorufa: That's not necessary. Just use sed to change the path:

prepare() {
    cd "$srcdir/${pkgname%-git}"
    sed -i 's|usr/local|usr|g' "scripts/${pkgname%-git}.service"
}

Asutorufa commented on 2020-05-14 02:26 (UTC)

cant start with systemctl, the /usr/local/bin/auto-cpufreq not exists, please add a link ln -s /usr/bin/auto-cpufreq /usr/local/bin/auto-cpufreq.

crian commented on 2020-03-23 08:40 (UTC)

Fixed :D

yochananmarqos commented on 2020-03-23 06:55 (UTC)

You forgot to run makepkg -o at to generate the pkgver. ;)

crian commented on 2020-03-23 06:53 (UTC)

Thanks. Done.

yochananmarqos commented on 2020-03-23 01:04 (UTC) (edited on 2020-03-23 01:06 (UTC) by yochananmarqos)

python-setuptools should be added to makedepends().

Tags are now available, please follow VCS package guidelines:

pkgver() {
    cd "$srcdir/${pkgname%-git}"
    git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
1.1.r0.gabe463c

Please also install the service in /usr/lib/systemd/system/ as symlinks will be created in /etc/systemd/system/ when the service is enabled.