45 lines
840 B
Bash
45 lines
840 B
Bash
#!/bin/bash
|
|
|
|
CWD=$(dirname $(readlink -f $0))
|
|
|
|
NAME=fluxbox
|
|
VERSION=1.3.5
|
|
|
|
# first install stock version
|
|
|
|
apt-get update
|
|
apt-get install --no-install-recommends --yes $NAME feh
|
|
. ../cleanup
|
|
savechanges /$NAME-stock.sb
|
|
|
|
cd /
|
|
unsquashfs /$NAME-stock.sb
|
|
|
|
# then, we want to patch it to implement window resizing!
|
|
# so we will recompile whole package
|
|
|
|
REBUILD=/tmp/$NAME-rebuild-$$
|
|
|
|
apt-get update
|
|
apt-get --yes build-dep $NAME
|
|
|
|
mkdir -p $REBUILD
|
|
cd $REBUILD
|
|
|
|
apt-get source $NAME
|
|
|
|
cd $NAME-$VERSION
|
|
|
|
cat $CWD/patches/fluxbox-slax.diff > debian/patches/fluxbox-slax.diff
|
|
echo fluxbox-slax.diff >> debian/patches/series
|
|
|
|
dpkg-buildpackage -us -uc
|
|
|
|
rm -Rf debian/$NAME/DEBIAN
|
|
rm -Rf debian/$NAME/usr/share/doc
|
|
rm -Rf debian/$NAME/usr/share/images
|
|
|
|
cp debian/$NAME/usr/bin/fluxbox /squashfs-root/usr/bin
|
|
|
|
savechanges /03-fluxbox.sb /squashfs-root
|