diff options
author | l.nardou <l.nardou@wanadoo.fr> | 2011-12-18 22:21:09 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-12-18 22:21:09 -0600 |
commit | 47960896e68710a128826f139e5b004ff8bd4c65 (patch) | |
tree | 9d2d228c7ac9c740a854203ad496b7ac997bbd90 /accessibility/espeakup/espeakup.SlackBuild | |
parent | 5f506db4c00687c59423c3a5138d12e216c1d2f1 (diff) |
accessibility/espeakup: Added (a connector for espeak and speakup)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'accessibility/espeakup/espeakup.SlackBuild')
-rw-r--r-- | accessibility/espeakup/espeakup.SlackBuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/accessibility/espeakup/espeakup.SlackBuild b/accessibility/espeakup/espeakup.SlackBuild new file mode 100644 index 000000000000..9fbf1d2188f3 --- /dev/null +++ b/accessibility/espeakup/espeakup.SlackBuild @@ -0,0 +1,66 @@ +#!/bin/sh + +# Slackware build script for espeakup + +# Written by l.nardou l.nardou@wanadoo.fr + +PRGNAM=espeakup +VERSION=${VERSION:-0.71} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +make MANDIR=/usr/man/man8 CFLAGS="$SLKCFLAGS" +make install MANDIR=/usr/man/man8 DESTDIR=$PKG + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |