v2ray/cpufreq/build.sh
2019-01-30 19:25:59 +08:00

31 lines
507 B
Bash
Executable File

#!/bin/sh
MODULE=cpufreq
VERSION=1.0
TITLE=CPU频率设置
DESCRIPTION='Intel CPU频率设置'
HOME_URL=Module_cpufreq.asp
# Check and include base
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ "$MODULE" == "" ]; then
echo "module not found"
exit 1
fi
if [ -f "$DIR/$MODULE/$MODULE/install.sh" ]; then
echo "install script not found"
exit 2
fi
# now include build_base.sh
. $DIR/../softcenter/build_base.sh
# change to module directory
cd $DIR
# do something here
do_build_result