--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/pekwm
+drwxr-xr-x root/root usr/etc/
+drwxr-xr-x root/root usr/etc/pekwm/
+-rw-r--r-- root/root usr/etc/pekwm/autoproperties
+-rw-r--r-- root/root usr/etc/pekwm/config
+-rw-r--r-- root/root usr/etc/pekwm/keys
+-rw-r--r-- root/root usr/etc/pekwm/menu
+-rw-r--r-- root/root usr/etc/pekwm/mouse
+-rw-r--r-- root/root usr/etc/pekwm/start
+-rw-r--r-- root/root usr/etc/pekwm/vars
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/pekwm.1.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/pekwm/
+drwxr-xr-x root/root usr/share/pekwm/scripts/
+-rwxr-xr-x root/root usr/share/pekwm/scripts/pekwm_themeset.sh
+-rwxr-xr-x root/root usr/share/pekwm/scripts/pekwm_ws_menu.sh
+drwxr-xr-x root/root usr/share/pekwm/themes/
+drwxr-xr-x root/root usr/share/pekwm/themes/default/
+-rw-r--r-- root/root usr/share/pekwm/themes/default/theme
--- /dev/null
+# Description: The Pek Window Manager
+# URL: http://pekwm.org
+# Maintainer: Rene Lengwinat rugek at dirtyhack dot net
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: libpcre xorg-libxft xorg-libxrandr libpng
+
+name=pekwm
+version=0.1.8
+release=1
+source=(http://pekwm.org/projects/3/files/pekwm-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+
+ export DEFAULT_LIBS="-L$CLFS/usr/lib"
+ export DEFAULT_CFLAGS="-I$CLFS/usr/include"
+ export xft_LIBS="$DEFAULT_LIBS -lXft -lXrender -lfontconfig -lfreetype -lX11"
+ export xft_CFLAGS="$DEFAULT_FLAGS -I$CLFS/usr/include/freetype2"
+ export xrandr_LIBS="$DEFAULT_LIBS -lXrandr"
+ export xrandr_CFLAGS="$DEFAULT_CFLAGS"
+ export libpng12_LIBS="$DEFAULT_LIBS -lpng12"
+ export libpng12_CFLAGS="$DEFAULT_CFLAGS -I$CLFS/usr/include/libpng12"
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --enable-xft \
+ --enable-pcre \
+ --mandir=/usr/man \
+ --disable-xinerama
+
+ make
+ make DESTDIR=$PKG install
+}