CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
openbox: initial import (verified compilation)
[attic/ports/opt-cross.git] / netcat / Pkgfile
CommitLineData
940b0926
VM
1# Description: Read and write data across network connections
2# URL: http://netcat.sourceforge.net
3# Maintainer: Antti Nykanen, aon at iki dot fi
4# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
5# Depends on:
6
7name=netcat
8version=0.7.1
9release=1
10
11source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
12
13build() {
14 cd $name-$version
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr
18 make
19 make DESTDIR=$PKG install
20 rm -rf $PKG/usr/{share,info}
21}