FreonLinux/pkgbuild/nmap.build

18 lines
231 B
Plaintext
Executable File

cd $tmpdir
# Downloading nmap source
if [ ! -f "$nmap" ]; then
echo "Downloading nmap sources..."
wget $mainmirror/$nmap
tar -xf $nmap
fi
cd $nmapsrcdir
./configure --prefix=$freondir
make -j$corecount
make install
cd ..