--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/xprop
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/xprop.1.gz
--- /dev/null
+# Description: Property displayer for X
+# URL: http://xorg.freedesktop.org
+# Maintainer: Tilman Sauerbeck tilman at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team crux-arm at mikeux dot dyndns dot org
+# Depends on: xorg-libxmu xorg-libx11
+
+name=xorg-xprop
+version=1.1.0
+release=1
+source=(http://xorg.freedesktop.org/releases/individual/app/xprop-$version.tar.bz2)
+
+build() {
+ cd xprop-$version
+
+ export DEFAULT_LIBS="-L$CLFS/usr/lib"
+ export DEFAULT_CFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/X11 -I$CLFS/usr/include/X11/extensions"
+ export XPROP_LIBS="$DEFAULT_LIBS -lX11"
+ export XPROP_CFLAGS="$DEFAULT_CFLAGS"
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --mandir=/usr/man
+
+ make
+ make DESTDIR=$PKG install
+}