WIP: add x/xf86-input-evtouch
Signed-off-by: Gwenhael Le Moine <cycojesus@darkstar.(none)>
This commit is contained in:
parent
322925eadc
commit
3a514461c9
1 changed files with 95 additions and 0 deletions
95
x/xf86-input-evtouch/xf86-input-evtouch.SlackBuild
Executable file
95
x/xf86-input-evtouch/xf86-input-evtouch.SlackBuild
Executable file
|
@ -0,0 +1,95 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
#NOTE: Needs File::Next (cpan -i File::Next)
|
||||
|
||||
# variables
|
||||
TMP=/tmp
|
||||
CWD=$(pwd)
|
||||
|
||||
APP_NAME=$(basename $CWD)
|
||||
PKG=$TMP/package-$APP_NAME
|
||||
|
||||
VERSION=0.8.8
|
||||
|
||||
EXT=tar.xz
|
||||
|
||||
DOCS="AUTHORS ChangeLog COPYING INSTALL NEWS README TODO"
|
||||
|
||||
ARCH=$(uname -m)
|
||||
BUILD=1cyco
|
||||
|
||||
PREFIX=/usr
|
||||
|
||||
SLCKFLAGS="-fPIC -O2"
|
||||
|
||||
REPOSITORIES=/home/cycojesus/projets/packages/repositories
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG $TMP/$APP_NAME-$VERSION
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
if [ ! -e $CWD/xf86-input-evtouch-$VERSION.tar.bz2 ] ; then
|
||||
( cd $CWD
|
||||
wget -c http://www.conan.de/touchscreen/xf86-input-evtouch-$VERSION.tar.bz2
|
||||
)
|
||||
fi
|
||||
|
||||
cd $TMP
|
||||
tar xf $CWD/xf86-input-evtouch-$VERSION.tar.bz2
|
||||
cd $TMP/$APP_NAME-$VERSION
|
||||
|
||||
sed -i 's|xf86Version.h|xorgVersion.h|g' evtouch.c
|
||||
sed -i 's|xf86OSMouse.h|xorgOSMouse.h|g' evtouch.c
|
||||
sed -i 's|XF86_|XORG_|g' evtouch.c
|
||||
|
||||
# configuration
|
||||
CFLAGS="$SLCKFLAGS" \
|
||||
CPPFLAGS="$SLCKFLAGS" \
|
||||
./configure \
|
||||
--prefix=$PREFIX \
|
||||
--mandir=$PREFIX/man \
|
||||
--libdir=$PREFIX/lib$(echo "$ARCH" | grep -o "64")
|
||||
|
||||
# compilation
|
||||
make -j3 PREFIX=$PREFIX
|
||||
|
||||
# installation
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
# correction
|
||||
cd $PKG
|
||||
chown -R root:root *
|
||||
|
||||
mkdir -p $PKG/usr/doc/$APP_NAME-$VERSION
|
||||
cd $TMP/$APP_NAME-$VERSION
|
||||
cp -R $DOCS $PKG/usr/doc/$APP_NAME-$VERSION
|
||||
|
||||
[ -d $PKG/usr/man ] && find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
|
||||
|
||||
# Strip binaries
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
|
||||
# embaumement
|
||||
mkdir -p $PKG/install
|
||||
cat <<EOF > $PKG/install/slack-desc
|
||||
$APP_NAME: $APP_NAME (Linux-Touchscreen Driver for X)
|
||||
$APP_NAME:
|
||||
$APP_NAME: Evtouch is a Touchscreen-Driver for X.
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME:
|
||||
$APP_NAME: http://www.conan.de/touchscreen/evtouch.html
|
||||
$APP_NAME:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
cd $PKG
|
||||
makepkg -l y -c n $TMP/$APP_NAME-$(echo $VERSION | sed 's/-//g')-$ARCH-$BUILD.txz
|
Loading…
Reference in a new issue