You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
325 B
17 lines
325 B
#!/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"
|
|
|