CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
netcat: initial import (verified compilation).
authorVictor Martinez <pitillo@ono.com>
Wed, 29 Sep 2010 08:23:18 +0000 (08:23 +0000)
committerVictor Martinez <pitillo@ono.com>
Wed, 29 Sep 2010 08:23:18 +0000 (08:23 +0000)
netcat/.footprint [new file with mode: 0644]
netcat/.md5sum [new file with mode: 0644]
netcat/Pkgfile [new file with mode: 0644]

diff --git a/netcat/.footprint b/netcat/.footprint
new file mode 100644 (file)
index 0000000..8708aa9
--- /dev/null
@@ -0,0 +1,7 @@
+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
diff --git a/netcat/.md5sum b/netcat/.md5sum
new file mode 100644 (file)
index 0000000..8ef17f2
--- /dev/null
@@ -0,0 +1 @@
+0a29eff1736ddb5effd0b1ec1f6fe0ef  netcat-0.7.1.tar.bz2
diff --git a/netcat/Pkgfile b/netcat/Pkgfile
new file mode 100644 (file)
index 0000000..a746760
--- /dev/null
@@ -0,0 +1,21 @@
+# 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}
+}