# SliTaz package receipt. PACKAGE="cpuspeed" VERSION="1.5" SHORT_DESC="CPU frequency scaling utility" CATEGORY="system-tools" MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" WEB_SITE="https://www.carlthompson.net/Software/CPUSpeed" CONFIG_FILES="etc/default/cpufreq" TARBALL="$PACKAGE-$VERSION.tar.bz2" WGET_URL="https://www.carlthompson.net/downloads/$PACKAGE/$TARBALL" TAGS="power-management" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { cd $src make } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/sbin cp -a $src/cpuspeed $fs/sbin }