#!/bin/sh # Setup development environment on Debian and derivatives such as Ubuntu # # Wireshark - Network traffic analyzer # By Gerald Combs # Copyright 1998 Gerald Combs # # SPDX-License-Identifier: GPL-2.0-or-later # # We drag in tools that might not be needed by all users; it's easier # that way. # if [ "$1" = "--help" ] then echo "\nUtility to setup a debian-based system for Wireshark Development.\n" echo "The basic usage installs the needed software\n\n" echo "Usage: $0 [--install-optional] [...other options...]\n" echo "\t--install-optional: install optional software as well" echo "\t[other]: other options are passed as-is to apt\n" exit 1 fi # Check if the user is root if [ $(id -u) -ne 0 ] then echo "You must be root." exit 1 fi for op do if [ "$op" = "--install-optional" ] then ADDITIONAL=1 else OPTIONS="$OPTIONS $op" fi done BASIC_LIST="qttools5-dev \ qttools5-dev-tools \ libqt5svg5-dev \ qtmultimedia5-dev \ qt5-default \ libpcap-dev \ bison \ flex \ make \ python \ perl \ libgcrypt-dev" ADDITIONAL_LIST="libnl-3-dev \ libc-ares-dev \ libkrb5-dev \ libsmi2-dev \ asciidoctor \ libsbc-dev \ liblua5.2-dev \ libnl-cli-3-dev \ libparse-yapp-perl \ libcap-dev \ liblz4-dev \ libsnappy-dev \ libspandsp-dev \ libxml2-dev \ git \ libjson-glib-dev \ ninja-build \ doxygen \ xsltproc" # Adds package $2 to list variable $1 if the package is found add_package() { local list="$1" pkgname="$2" # fail if the package is not known [ -n "$(apt-cache show "$pkgname" 2>/dev/null)" ] || return 1 # package is found, append it to list eval "${list}=\"\${${list}} \${pkgname}\"" } # cmake3 3.5.1: Ubuntu 14.04 # cmake >= 3.5: Debian >= jessie-backports, Ubuntu >= 16.04 add_package BASIC_LIST cmake3 || BASIC_LIST="$BASIC_LIST cmake" # Debian >= wheezy-backports, Ubuntu >= 16.04 add_package ADDITIONAL_LIST libnghttp2-dev || echo "libnghttp2-dev is unavailable" >&2 # libssh-gcrypt-dev: Debian >= jessie, Ubuntu >= 16.04 # libssh-dev (>= 0.6): Debian >= jessie, Ubuntu >= 14.04 add_package ADDITIONAL_LIST libssh-gcrypt-dev || add_package ADDITIONAL_LIST libssh-dev || echo "libssh-gcrypt-dev and libssh-dev are unavailable" >&2 # libgnutls-dev: Debian <= jessie, Ubuntu <= 16.04 # libgnutls28-dev: Debian >= wheezy-backports, Ubuntu >= 12.04 add_package ADDITIONAL_LIST libgnutls28-dev || add_package ADDITIONAL_LIST libgnutls-dev || echo "libgnutls28-dev and libgnutls-dev are unavailable" >&2 # mmdbresolve add_package ADDITIONAL_LIST libmaxminddb-dev || echo "libmaxminddb-dev is unavailable" >&2 ACTUAL_LIST=$BASIC_LIST # Now arrange for optional support libraries if [ $ADDITIONAL ] then ACTUAL_LIST="$ACTUAL_LIST $ADDITIONAL_LIST" fi apt-get install $ACTUAL_LIST $OPTIONS if [ $? != 0 ] then exit 2 fi if [ ! $ADDITIONAL ] then echo "\n*** Optional packages not installed. Rerun with --install-optional to have them.\n" fi