FreonLinux/pkgbuild/nano.build

18 lines
249 B
Plaintext
Executable File

cd $tmpdir
# Downloading nano source
if [ ! -f "$nano" ]; then
echo "Downloading nano editor sources..."
wget $nanomirror/$nano
tar -xf $nano
fi
# Configure
cd $nanosrcdir
./configure --prefix=$freondir
# Compile
make -j20
make install
cd ..