xfce
how to build?
official building documentation
where to download?
source
v4.8
first download the fat-tarball. additionally you need the garcon library.
according the manuals this should be included in the future.
#!/bin/sh
PREFIX=/opt/xfce-4.8
mkdir ${PREFIX} ${PREFIX}/bin ${PREFIX}/lib ${PREFIX}/lib/pkgconfig > /dev/null 2>&1
export PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig:$PKG_CONFIG_PATH"
export PATH=${PREFIX}/bin:${PATH}
export CFLAGS="-Os -pipe -fomit-frame-pointer -march=native"
PKGS="
xfce4-dev-tools-4.8.0.tar.bz2
libxfce4util-4.8.1.tar.bz2
xfconf-4.8.0.tar.bz2
libxfce4ui-4.8.0.tar.bz2
libxfcegui4-4.8.0.tar.bz2
exo-0.6.0.tar.bz2
garcon-0.1.6.tar.bz2
xfce4-panel-4.8.0.tar.bz2
Thunar-1.2.0.tar.bz2
thunar-vfs-1.2.0.tar.bz2
xfce4-settings-4.8.0.tar.bz2
xfce4-session-4.8.0.tar.bz2
xfwm4-4.8.0.tar.bz2
xfdesktop-4.8.0.tar.bz2
xfce4-appfinder-4.8.0.tar.bz2
xfce-utils-4.8.0.tar.bz2
gtk-xfce-engine-2.8.0.tar.bz2
thunar-volman-0.6.0.tar.bz2
xfburn-0.4.3.tar.bz2
xfce4-power-manager-1.0.10.tar.bz2"
for PKG in ${PKGS}; do
echo "working on ${PKG} ..."
tar xjf $PKG
DIRNAME=${PKG%.tar.bz2}
cd $DIRNAME
./configure --prefix=${PREFIX} && make && make install
if [ $? -ne 0 ]; then
echo "abort...."
exit 1
fi
cd ..
done