2016-12-24 16:49:04 +00:00
|
|
|
#!/bin/bash
|
2016-01-08 16:17:22 +00:00
|
|
|
|
|
|
|
#####################################################################################
|
2016-02-18 15:41:39 +00:00
|
|
|
# ADS-B RECEIVER #
|
2016-01-08 16:17:22 +00:00
|
|
|
#####################################################################################
|
|
|
|
# #
|
|
|
|
# This script is not meant to be executed directly. #
|
|
|
|
# Instead execute install.sh to begin the installation process. #
|
|
|
|
# #
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
# #
|
|
|
|
# Copyright (c) 2015 Joseph A. Prochazka #
|
|
|
|
# #
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy #
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal #
|
|
|
|
# in the Software without restriction, including without limitation the rights #
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is #
|
|
|
|
# furnished to do so, subject to the following conditions: #
|
|
|
|
# #
|
|
|
|
# The above copyright notice and this permission notice shall be included in all #
|
|
|
|
# copies or substantial portions of the Software. #
|
|
|
|
# #
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE #
|
|
|
|
# SOFTWARE. #
|
|
|
|
# #
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
|
|
|
|
## SOFTWARE VERSIONS
|
|
|
|
|
2016-09-01 21:06:18 +00:00
|
|
|
# The ADS-B Receiver Project
|
2016-09-26 16:01:55 +00:00
|
|
|
PROJECTVERSION="2.5.0"
|
2016-09-01 21:06:18 +00:00
|
|
|
|
2016-08-31 15:51:22 +00:00
|
|
|
# FlightAware PiAware
|
2016-09-23 19:35:14 +00:00
|
|
|
PIAWAREVERSION="3.1.0"
|
2016-08-31 15:51:22 +00:00
|
|
|
|
2016-01-08 16:17:22 +00:00
|
|
|
# PlaneFinder ADS-B Client
|
2016-12-21 16:31:07 +00:00
|
|
|
PFCLIENTVERSIONARM="3.5.461"
|
2016-08-17 12:05:53 +00:00
|
|
|
PFCLIENTVERSIONI386="3.4.61"
|
2016-03-07 16:44:26 +00:00
|
|
|
|
|
|
|
# Flightradar24 Linux Debian package
|
|
|
|
FR24CLIENTVERSIONI386="1.0.18-5"
|
2016-08-25 18:23:51 +00:00
|
|
|
|
|
|
|
# mlat-client
|
|
|
|
MLATCLIENTVERSION="0.2.6"
|
|
|
|
MLATCLIENTTAG="v0.2.6"
|
2016-12-02 22:04:09 +00:00
|
|
|
|
|
|
|
# PhantomJS
|
|
|
|
PHANTOMJSVERSION="2.1.1"
|