mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/laptop-mode-tools: Updated for version 1.59.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
05bc19a05f
commit
00776d8b63
4 changed files with 18 additions and 16 deletions
|
@ -5,6 +5,6 @@ which lets your hard drive spin down. In addition, it allows you to tweak
|
|||
a number of other power-related settings using a simple configuration file.
|
||||
|
||||
To launch laptop-mode-tools on system start, add the following to rc.local:
|
||||
if [ -x /etc/rc.d/rc.laptop-mode ]; then
|
||||
/etc/rc.d/rc.laptop-mode start
|
||||
fi
|
||||
if [ -x /etc/rc.d/rc.laptop-mode ]; then
|
||||
/etc/rc.d/rc.laptop-mode start
|
||||
fi
|
||||
|
|
|
@ -10,7 +10,6 @@ config() {
|
|||
fi
|
||||
# Otherwise, we leave the .new copy for the admin to consider...
|
||||
}
|
||||
|
||||
preserve_perms() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for laptop-mode-tools
|
||||
|
||||
# Copyright 2010 V'yacheslav Stetskevych <slava18@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
|
@ -21,8 +22,10 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Maintained by John Tyree <johntyree+sbo@gmail.com>
|
||||
|
||||
PRGNAM=laptop-mode-tools
|
||||
VERSION=${VERSION:-1.55}
|
||||
VERSION=${VERSION:-1.59}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -56,7 +59,7 @@ mkdir -p $TMP $PKG $OUTPUT
|
|||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/${PRGNAM}_$VERSION.tar.gz
|
||||
cd ${PRGNAM}_$VERSION
|
||||
cd ${PRGNAM}-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
|
@ -65,20 +68,20 @@ find . \
|
|||
-exec chmod 644 {} \;
|
||||
|
||||
DESTDIR=$PKG INIT_D=$PKG/etc/rc.d MAN_D=/usr/man ./install.sh
|
||||
install -d $PKG/var/run/laptop-mode-tools
|
||||
|
||||
[ "$LIBDIRSUFFIX" = "64" ] && mv $PKG/usr/lib $PKG/usr/lib64
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
# No need to create /var/run/laptop-mode-tools in the package, as the
|
||||
# init script creates the directory; in many recent distros, /var/run
|
||||
# is on a tmpfs, so nothing should ever assume that a subdir exists already
|
||||
mv $PKG/etc/rc.d/laptop-mode $PKG/etc/rc.d/rc.laptop-mode.new
|
||||
|
||||
find $PKG/etc/laptop-mode -name '*.conf' -exec mv {} {}.new \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
README COPYING \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README COPYING $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="laptop-mode-tools"
|
||||
VERSION="1.55"
|
||||
VERSION="1.59"
|
||||
HOMEPAGE="http://www.samwel.tk/laptop_mode/"
|
||||
DOWNLOAD="http://samwel.tk/laptop_mode/tools/downloads/laptop-mode-tools_1.55.tar.gz"
|
||||
MD5SUM="fda9255375de2dd3b86526da39160cf0"
|
||||
DOWNLOAD="http://samwel.tk/laptop_mode/tools/downloads/laptop-mode-tools_1.59.tar.gz"
|
||||
MD5SUM="0c4de075dd714681b4ff62c84d45513c"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="V'yacheslav Stetskevych"
|
||||
EMAIL="slava18@gmail.com"
|
||||
MAINTAINER="John Tyree"
|
||||
EMAIL="johntyree+sbo@gmail.com"
|
||||
APPROVED="rworkman"
|
||||
|
|
Loading…
Reference in a new issue