--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+lrwxrwxrwx root/root usr/bin/nc -> netcat
+-rwxr-xr-x root/root usr/bin/netcat
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/netcat.1.gz
--- /dev/null
+# Description: Read and write data across network connections
+# URL: http://netcat.sourceforge.net
+# Maintainer: Antti Nykanen, aon at iki dot fi
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on:
+
+name=netcat
+version=0.7.1
+release=1
+
+source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr
+ make
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/{share,info}
+}