diff options
author | Chess Griffin <chess@chessgriffin.com> | 2010-05-11 14:03:47 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 14:03:47 +0200 |
commit | 110a47a0d05bb5a643211b449f97a0bd8e00a122 (patch) | |
tree | 2ee936578204dbcf3f6db3c84706ece9a847700e /desktop/openbox/openbox.SlackBuild | |
parent | 063cbe371efd7dba7b7b89c313289a26eee81829 (diff) | |
download | slackbuilds-110a47a0d05bb5a643211b449f97a0bd8e00a122.tar.gz |
desktop/openbox: Initial import
Diffstat (limited to 'desktop/openbox/openbox.SlackBuild')
-rw-r--r-- | desktop/openbox/openbox.SlackBuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/desktop/openbox/openbox.SlackBuild b/desktop/openbox/openbox.SlackBuild new file mode 100644 index 0000000000..231553917f --- /dev/null +++ b/desktop/openbox/openbox.SlackBuild @@ -0,0 +1,69 @@ +#!/bin/sh + +# Slackware build script for Openbox + +# Written by Chess Griffin <chess at chessgriffin dot com> + +PRGNAM=openbox +VERSION=3.3.1 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOCS="ABOUT-NLS AUTHORS CHANGELOG COMPLIANCE COPYING README" + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-startup-notification \ + || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 + +( 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 +) + +if [ -d $PKG/usr/man ]; then +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) +fi + +# Add xinitrc.openbox so that openbox will show up as an option in xwmconfig +install -D -m 0755 $CWD/xinitrc.openbox $PKG/etc/X11/xinit/xinitrc.openbox + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $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 |