slackbuilds/a/fspd/fspd.SlackBuild

83 lines
2.3 KiB
Text
Raw Normal View History

2011-02-07 12:03:45 +01:00
#!/bin/sh -x
# variables
VERSION=trunk_$(date +"%Y.%m.%d_%H.%M")
BUILD=1
PACKAGER=cyco
TMP=/tmp
CWD=$(pwd)
PRGNAM=$(basename $CWD)
PKG=$TMP/$PACKAGER/pkg-$PRGNAM
ARCH=$(uname -m)
REPOSITORY=/home/cycojesus/projets/packages/repositories/$PRGNAM
PREFIX=/usr
# nettoyage préalable
rm -fr $PKG $TMP/$PRGNAM-$VERSION
mkdir -p $PKG
# mise en place
cd $TMP
if [ ! -e $REPOSITORY ] ; then
mkdir -p $(dirname $REPOSITORY)
svn checkout http://int.ed.ntnu.no/svn/public/fspd/trunk/ $REPOSITORY
fi
( cd $REPOSITORY
svn update
)
cp -R $REPOSITORY $TMP/
( cd $TMP/$PRGNAM
mkdir -p $PKG{$PREFIX/{sbin,doc/$PRGNAM},/etc/{rc.d,conf.d}}
cp fspd $PKG$PREFIX/sbin/
cp fsp $PKG/etc/rc.d/rc.fspd
cp README autoconf $PKG$PREFIX/doc/$PRGNAM
cp fsp.conf $PKG/etc/conf.d/
sed -i "s|FSPD_DIR=/usr/local/bin|FSPD_DIR=$PREFIX/sbin|" $PKG/etc/conf.d/fsp.conf
sed -i "s|FSP_EVENT=.*|FSP_EVENT=$(ls /dev/input/by-path/platform-i8042-serio-*-event-mouse)|" $PKG/etc/conf.d/fsp.conf
sed -i "s|FSP_FLAGS_DIR=.*|FSP_FLAGS_DIR=/sys/devices/platform/i8042/serio$(ls /dev/input/by-path/platform-i8042-serio-*-event-mouse | sed 's|/dev/input/by-path/platform-i8042-serio-||' | sed 's|-event-mouse||')|" $PKG/etc/conf.d/fsp.conf
chmod +x $PKG$PREFIX/sbin/* $PKG/etc/rc.d/*
)
# correction
( cd $PKG
chown -R root:root *
find $PKG$PREFIX/man -name "*.?" -type f -exec gzip -9 {} \;
)
# embaumement
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
$PRGNAM: $PRGNAM (Touchpad manager daemon)
$PRGNAM:
$PRGNAM: FSP Daemon is made to dissable the Sentelic touchpad when the keyboard
$PRGNAM: is used. Inspired by the syndaemon for synaptic.
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: https://int.ed.ntnu.no/svn/public/fspd/trunk/
$PRGNAM:
EOF
# empaquetage
cd $PKG
makepkg -l y -c n $TMP/$PRGNAM-$VERSION-$ARCH-$BUILD$PACKAGER.txz