-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix-install-auto-cpufreq
executable file
·84 lines (70 loc) · 1.78 KB
/
mix-install-auto-cpufreq
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
#!/bin/sh
### Package: mix-install-auto-cpufreq
### Version: v20240611.2300
### Author: Michael Gan "xmixahlx" michaelbgan@gmail.com
### License: GPLv3
### Script Dependencies: wlroots wayland wayland-protocols hyprlang hyprcursor libzip
## OVERRIDES
# MIXTOOLS
if [ -z $MIXTOOLSDIR ]; then
MIXTOOLSDIR="`pwd`"
PATH=$MIXTOOLSDIR:$PATH
fi
echo "*** MIXTOOLSDIR selected is $MIXTOOLSDIR."
# INSTALLDEPS
if [ -z $INSTALLDEPS ]; then
INSTALLDEPS=debian
fi
echo "*** INSTALLDEPS selected is $INSTALLDEPS."
# GITBRANCH
# Upstream branch is "master".
if [ -z $GITBRANCH ]; then
GITBRANCH=master
fi
echo "*** GITBRANCH selected is $GITBRANCH."
# GITBRANCH
# Upstream branch is "master".
if [ -z $GITBRANCH ]; then
GITBRANCH=master
fi
echo "*** GITBRANCH selected is $GITBRANCH."
## VARS
RESDIR=$MIXTOOLSDIR/resources
DEVDIR=$MIXTOOLSDIR/upstream
GITURL=https://github.com
GITREPO=adnanhodzic
GITTREE=auto-cpufreq
GITPRURL=https://patch-diff.githubusercontent.com
GITPRPATCH=$GITPRURL/raw/$GITREPO/$GITTREE/pull/$GITPR.patch
PKGDIR=$GITTREE\_$GITBRANCH
## INSTALLDEPS
# Debian Dependencies
if [ $INSTALLDEPS = debian ]; then
sudo apt-get -y install build-essential coreutils libc-bin git meson
fi
## PREP
set -e
mkdir -p $DEVDIR
cd $DEVDIR
## GIT
[ -d $PKGDIR ] || git clone --recursive --depth=1 $GITURL/$GITREPO/$GITTREE.git --branch=$GITBRANCH $PKGDIR
cd $PKGDIR
git clean -dfx
git reset --hard
git pull
git submodule update --init --recursive --depth=1
## GITPR
if [ $GITPR ]; then
echo "*** GITPR selected is $GITPR."
rm -f $DEVDIR/$GITTREE\_$GITPR.patch
wget $GITPRPATCH -O $DEVDIR/$GITTREE\_$GITPR.patch
patch -p1 < $DEVDIR/$GITTREE\_$GITPR.patch
fi
## INSTALL
sudo ./auto-cpufreq-installer
## CONFIGURE
systemctl enable auto-cpufreq.service
systemctl restart auto-cpufreq.service
## EXIT
exit
## ENJOY