#!/bin/bash # # Download and execute with the following: # curl -k -L https://cloud.dyn-o-saur.com/lazarus-ide-i386 | bash # cd /tmp echo "Downloading Lazarus and FPC packages" wget --no-check-certificate https://cloud.dyn-o-saur.com/fpc-laz_3.2.2-210709_i386.deb wget --no-check-certificate https://cloud.dyn-o-saur.com/fpc-src_3.2.2-210709_i386.deb wget --no-check-certificate https://cloud.dyn-o-saur.com/lazarus-project_3.2.0-0_i386.deb echo "Install packages and dependency ...." echo ".... FPC and Lazarus binary ...." cd ~ sudo apt install /tmp/fpc-laz_3.2.2-210709_i386.deb echo ".... FPC and Lazarus source ...." sudo apt install /tmp/fpc-src_3.2.2-210709_i386.deb echo ".... Lazarus enviroment ...." sudo apt install /tmp/lazarus-project_3.2.0-0_i386.deb echo ".... End installation" exit