desktop/bspwm: Pull upstream fixes.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
John Vogel 2014-06-10 06:26:37 +07:00 committed by Willy Sudiarto Raharjo
parent be7f8252fe
commit 15c6d7579d
3 changed files with 16048 additions and 4723 deletions

View File

@ -24,7 +24,7 @@
PRGNAM=bspwm
VERSION=${VERSION:-0.8.8}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -60,7 +60,12 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$VERSION.tar.gz || tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
if [ ! -f $CWD/$PRGNAM-$VERSION.tar.gz ]; then
if [ -f $CWD/$VERSION.tar.gz ]; then
mv $CWD/$VERSION.tar.gz $CWD/$PRGNAM-$VERSION.tar.gz
fi
fi
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@ -69,8 +74,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# patch to git commit 0ca5bf31 (use -l due to major spaces to tabs conversion in Jan 2014)
patch -l -p1 < $CWD/patches/bspwm-0.8.8_0ca5bf3.patch
# patch to git commit 0ff26c34 (use -l due to major spaces to tabs conversion in Jan 2014)
patch -l -p1 < $CWD/patches/bspwm-0.8.8_0ff26c34.patch
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff