This is a working build instruction on Raspberry Pi 3B with Raspbian Stretch.
sudo apt-get install build-essential cmake pkg-config libusb-1.0-0-dev
sudo apt-get install automake bison libpcre3-dev
The libcaer
can be installed as follows
git clone https://gitlab.com/inivation/dv/libcaer.git
cd libcaer
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make -j4
sudo make install
You can compile swig
with the following steps:
git clone https://github.com/duguyue100/swig
cd swig
./autogen.sh
# choose one of the configure settings
./configure --with-python=$(command -v python) --without-python2 --without-pcre # for python 3
make -j4
sudo make install
Compile pyaer
with the following steps:
git clone https://github.com/duguyue100/pyaer
sudo make install
Yuhuang Hu
Email: duguyue100@gmail.com