36 lines
696 B
Bash
Executable File
36 lines
696 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Author : Gaston Gonzalez
|
|
# Date : 29 December 2023
|
|
# Purpose : Install development tools
|
|
set -e
|
|
|
|
et-log "Installing dev tools for fldigi"
|
|
apt install \
|
|
autoconf \
|
|
gettext \
|
|
libfltk1.3-dev \
|
|
libportaudio2 \
|
|
libsamplerate0-dev \
|
|
libsndfile1-dev \
|
|
libudev-dev \
|
|
pkg-config \
|
|
portaudio19-dev \
|
|
-y
|
|
|
|
et-log "Installing dev tools for building EmComm Tools packages"
|
|
apt install \
|
|
git \
|
|
libfuse2 \
|
|
rpm \
|
|
-y
|
|
|
|
et-log "Installing tools for building custom ISO image"
|
|
if ! command -v cubic
|
|
then
|
|
sudo apt-add-repository universe -y
|
|
sudo apt-add-repository ppa:cubic-wizard/release -y
|
|
sudo apt update
|
|
sudo apt install --no-install-recommends cubic -y
|
|
fi
|