First commit

This commit is contained in:
marcel
2024-02-18 18:22:51 +01:00
commit 711bf9f7dc
20 changed files with 1601 additions and 0 deletions

17
python-ax25/install.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
DIR=`dirname $0`
# Update the system
/usr/bin/apt update
#/usr/bin/apt -y upgrade
# Install the dependencies
/usr/bin/apt -y install libax25 libax25-dev ax25-apps ax25-tools python3-dev
# Install the Python module
${DIR}/setup.py build
${DIR}/setup.py install
# Remove the build
/bin/rm -rf "${DIR}/build"