-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild_wheel.sh
executable file
·66 lines (58 loc) · 1.75 KB
/
build_wheel.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
#!/bin/bash
set -ex # will exit on any error and print all commands
# Function to install packages on Enterprise Linux (CentOS, RHEL)
install_enterprise_linux() {
yum install -y epel-release
yum update -y # Update the system
yum groupinstall -y "Development Tools"
yum install -y cmake git libusbx-devel hdf5-devel gcc-c++ python3-devel python3-numpy swig
}
# Function to install packages on Debian-based systems (Debian, Ubuntu)
install_debian() {
apt update -y # Update the system
apt install -y build-essential cmake git libusb-1.0-0-dev libhdf5-dev g++ libpython3-dev python3-numpy swig
}
# Function to install packages on Alpine Linux
install_alpine() {
apk update # Update the system
apk add --no-cache build-base git libusb-dev hdf5-dev g++ python3-dev py3-numpy swig
}
# Determine the Linux distribution and install packages accordingly
if [ -f "/etc/redhat-release" ]; then
# Enterprise Linux (CentOS, RHEL)
install_enterprise_linux
elif [ -f "/etc/debian_version" ]; then
# Debian-based distribution (Debian, Ubuntu)
install_debian
elif grep -qi alpine /etc/os-release; then
# Alpine Linux
install_alpine
else
echo "Unsupported distribution"
exit 1
fi
# Clone and build SoapySDR
rm -rf SoapySDR
git clone https://github.com/pothosware/SoapySDR.git
cd SoapySDR || exit
mkdir build
cd build || exit
cmake ..
make -j$(nproc)
make install -j$(nproc)
#On debian we need to run ldconfig
if [ -f "/etc/debian_version" ]; then
ldconfig
fi
cd ../..
# Clone and build LimeSuite
rm -rf LimeSuite
git clone https://github.com/myriadrf/LimeSuite.git
cd LimeSuite/build || exit
cmake ../ -DENABLE_GUI=OFF
make -j$(nproc)
make install
# In debian we need ldconfig
if [ -f "/etc/debian_version" ]; then
ldconfig
fi