82e678362f
svn path=/nixpkgs/trunk/; revision=4335
13 lines
220 B
Bash
13 lines
220 B
Bash
buildinputs=""
|
|
source $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd net-tools-*
|
|
cp $config config.h
|
|
sed "s^/usr/share/man^/share^" < man/Makefile > tmp
|
|
mv tmp man/Makefile
|
|
patch -p1 < $patch
|
|
make
|
|
mkdir $out
|
|
make BASEDIR=$out install
|