--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/hsetroot
--- /dev/null
+# Description: A wallpaper setting utility for X11
+# URL: http://thegraveyard.org/hsetroot.php
+# Packager: Brett Goulder, predatorfreak at dcaf-security dot org
+# Maintainer: Brett Goulder, predatorfreak at dcaf-security dot org.
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: imlib2
+
+name=hsetroot
+version=1.0.2
+release=1
+source=(http://thegraveyard.org/files/$name-$version.tar.gz)
+
+
+build() {
+ cd $name-$version
+
+ export DEFAULT_LIBS="-L$CLFS/usr/lib"
+ export DEFAULT_CFLAGS="-I$CLFS/usr/include"
+ export IMLIB2_LIBS="$DEFAULT_LIBS -lImlib2"
+ export IMLIB2_CFLAGS="$DEFAULT_CFLAGS"
+
+ echo "ac_cv_prog_imlib2config_cmd=$CLFS/usr/bin/imlib2-config" > config.cache
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --disable-nls \
+ --with-x \
+ --cache-file=config.cache
+
+ sed -i src/Makefile config/Makefile -e "s|/usr|$CLFS/usr|"
+ make
+ install -D -m 0755 src/$name $PKG/usr/bin/$name
+}