diff options
author | B. Watson <yalhcru@gmail.com> | 2010-05-12 23:28:25 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:28:25 +0200 |
commit | 877ec9bfd1adfc1306fe343b3cac43424a995421 (patch) | |
tree | 452846ac9fbf152c23016991812a1ea9b1d12a39 /desktop/wmclock/wmclock.SlackBuild | |
parent | 8122ac328cfc88f63ddee5724e61e077f4c9052d (diff) |
desktop/wmclock: Added to 12.2 repository
Diffstat (limited to 'desktop/wmclock/wmclock.SlackBuild')
-rw-r--r-- | desktop/wmclock/wmclock.SlackBuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/desktop/wmclock/wmclock.SlackBuild b/desktop/wmclock/wmclock.SlackBuild new file mode 100644 index 000000000000..49b45a56deb8 --- /dev/null +++ b/desktop/wmclock/wmclock.SlackBuild @@ -0,0 +1,69 @@ +#!/bin/sh + +# Slackware build script for wmclock + +# Written by B. Watson (yalhcru@gmail.com) + +PRGNAM=wmclock +VERSION=${VERSION:-1.0.12.2} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R a-s,u+w,go+r-w . + +# Patch to reduce CPU usage (from the author's website) +# Note: -p0, not the usual -p1! +patch -p0 < $CWD/wmclock_nopolling.patch + +# Set the default language with LANGUAGE=<language> in the environment +# Default is english. It's still possible to display in other +# languages using the -monthxpm and -weekdayxpm options. + +# Language choices: +# breton czech danish dutch english french french2 german hungarian indonesian +# italian norwegian portuguese russian slovene spanish swedish ukrainian + +LANGUAGE=${LANGUAGE:-english} +./configure --lang $LANGUAGE + +make CDEBUGFLAGS="$SLKCFLAGS" +mkdir -p $PKG/usr/bin +strip $PRGNAM +install -m0755 -o root -g root $PRGNAM $PKG/usr/bin +make install.share DESTDIR=$PKG + +mkdir -p $PKG/usr/man/man1 +gzip -9c $PRGNAM.man > $PKG/usr/man/man1/$PRGNAM.1.gz + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp README COPYING ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.tgz |