-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigureall
executable file
·50 lines (40 loc) · 1.15 KB
/
configureall
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
#!/bin/bash
sudo apt-get update
sudo apt-get install -y openssh-server
sudo apt-get install -y ethtool
sudo apt-get install -y build-essential
sudo apt-get install -y libpcap-dev
sudo apt-get install -y libpcre3-dev
sudo apt-get install -y libdumbnet-dev
sudo apt-get install -y zlib1g-dev
sudo apt-get install -y bison flex
sudo apt-get install -y meson
sudo apt-get install -y libmount-dev
sudo apt-get install -y python3-pip
sudo apt-get install -y xsltproc
sudo apt-get install -y libtool
sudo apt-get install -y libluajit-5.1-dev
sudo apt-get install -y cmake
sudo apt-get install -y libffi-dev
sudo apt-get install -y libelf-dev
sudo apt-get install -y libssl-dev
sudo apt-get install -y pkg-config
sudo apt-get install -y automake1.11
sudo apt-get install -y libglib2.0-dev
sudo apt-get install -y net-tools
sudo apt-get install -y libntirpc-dev
sudo apt-get install -y bridge-utils
cd /usr/include
sudo cp -r ntirpc/* .
#cd glib-2.59.0/
#meson -Druntime_libdir=/usr -Dselinux=disabled _build
#ninja -C _build
#sudo ninja install -C _build
cd ./daq-2.0.6/
make clean
libtoolize --force
autoreconf -i -f -I m4
automake
./configure
make
sudo make install