-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtravis-install-dependencies-unav.sh
73 lines (67 loc) · 2.33 KB
/
travis-install-dependencies-unav.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#/usr/bin/env sh
#
# Install the uNAV required libraries needed for a build.
#
#*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#
# Copyright (c) 2016 Raffaello Bonghi
#
# This file is part of uNAV project which is released under the
# MIT License (MIT).
# For full license details see file "LICENSE" or go to
# https://opensource.org/licenses/MIT
#
#*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#
# Downloads the software from Microchip and saves them in a folder outside
# of the project directory. Than extracts and installs them.
#
# Versions:
# MPLAB® X IDE: v3.50
# MPLAB® XC16 Compiler: v1.30
# MPLAB® Pheriperhal Lib: v2.00
#
# Save the current working directory
pushd .
# Go to the home folder for the unav libraries.
cd ../
export MPLABVER=v3.50
echo "- MPLAB X IDE VERSION: $MPLABVER -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- Downloading or_bus_c.X library -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
git clone https://github.com/officinerobotiche/or_bus_c.X
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- Build or_bus_c.X library -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
cd or_bus_c.X/
/opt/microchip/mplabx/$MPLABVER/mplab_ide/bin/prjMakefilesGenerator.sh .
make
cd ../
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- Downloading or_kernel_c.X library -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
git clone https://github.com/officinerobotiche/or_kernel_c.X
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- Build or_kernel_c.X library -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
cd or_kernel_c.X/
/opt/microchip/mplabx/$MPLABVER/mplab_ide/bin/prjMakefilesGenerator.sh .
make
cd ../
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- Downloading or_common_c.X library -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
git clone https://github.com/officinerobotiche/or_common_c.X
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- Build or_commont_c.X library -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
cd or_common_c.X/
/opt/microchip/mplabx/$MPLABVER/mplab_ide/bin/prjMakefilesGenerator.sh .
make
cd ../
# Return to the saved working directory
popd
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "- All libraries are downloaded -"
echo "-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"