--- /dev/null
+drwxr-xr-x root/root lib/
+lrwxrwxrwx root/root lib/libcap.so.2 -> libcap.so.2.22
+-rw-r--r-- root/root lib/libcap.so.2.22
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/capsh
+-rwxr-xr-x root/root sbin/getcap
+-rwxr-xr-x root/root sbin/getpcaps
+-rwxr-xr-x root/root sbin/setcap
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/sys/
+-rw-r--r-- root/root usr/include/sys/capability.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libcap.a
+lrwxrwxrwx root/root usr/lib/libcap.so -> ../../lib/libcap.so.2.22
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/capsh.1.gz
+drwxr-xr-x root/root usr/man/man3/
+-rw-r--r-- root/root usr/man/man3/cap_clear.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_clear_flag.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_compare.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_copy_ext.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_copy_int.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_drop_bound.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_dup.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_free.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_from_name.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_from_text.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_get_bound.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_get_fd.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_get_file.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_get_flag.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_get_pid.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_get_proc.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_init.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_set_fd.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_set_file.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_set_flag.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_set_proc.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_size.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_to_name.3.gz
+-rw-r--r-- root/root usr/man/man3/cap_to_text.3.gz
+-rw-r--r-- root/root usr/man/man3/capgetp.3.gz
+-rw-r--r-- root/root usr/man/man3/capsetp.3.gz
+-rw-r--r-- root/root usr/man/man3/libcap.3.gz
+drwxr-xr-x root/root usr/man/man8/
+-rw-r--r-- root/root usr/man/man8/getcap.8.gz
+-rw-r--r-- root/root usr/man/man8/setcap.8.gz
--- /dev/null
+# Description: POSIX.1e capabilities library
+# URL: http://sites.google.com/site/fullycapable/
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+# Depends on: attr
+
+name=libcap
+version=2.22
+release=1
+source=(http://crux.s3.amazonaws.com/dist/libcap-$version.tar.bz2)
+
+build () {
+ cd libcap-$version
+
+ sed -i "/^CFLAGS/s/-O2/$CFLAGS/" Make.Rules
+
+ make CC="$CC" BUILD_CC="gcc" BUILD_CFLAGS="-O2 -pipe"
+ make RAISE_SETFCAP=no DESTDIR=$PKG man_prefix=/usr install
+
+ install -d $PKG/usr/lib
+ mv $PKG/lib/libcap.a $PKG/usr/lib
+ rm $PKG/lib/libcap.so
+ ln -s ../../lib/libcap.so.$version $PKG/usr/lib/libcap.so
+}