-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-deps.sh
More file actions
executable file
·58 lines (55 loc) · 1.08 KB
/
Copy pathinstall-deps.sh
File metadata and controls
executable file
·58 lines (55 loc) · 1.08 KB
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
#/bin/sh -c
pwd
echo "Current PATH=$PATH"
case "$1" in
ignitech)
# - name: Install libIgnitech
git clone https://github.com/techie66/libIgnitech.git
cd libIgnitech
./autogen.sh
./configure
make
sudo make install
cd ..
;;
isp)
# - name: Install libISP2
git clone https://github.com/techie66/libISP2.git
cd libISP2
./autogen.sh
./configure
make
sudo make install
cd ..
;;
bluetooth)
# - name: Install Bluetooth headers
sudo apt-get update
sudo apt-get install libbluetooth-dev
;;
flatbuffers)
# - name: Install Flatbuffers
git clone https://github.com/google/flatbuffers.git
cd flatbuffers
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
make
sudo make install
cd ..
;;
bcm2835)
# - name: Install bcm2835lib
wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.68.tar.gz
tar -xf bcm2835-1.68.tar.gz
cd bcm2835-1.68
./configure
make
sudo make install
cd ..
;;
build-essential)
# - name: Install build-essential
sudo apt-get update
sudo apt-get install build-essential
cd ..
;;
esac