From f4be2dd9688252aec722b203e8dd3db746554391 Mon Sep 17 00:00:00 2001
From: PPLC / Timo Dufner <PPLC@users.noreply.github.com>
Date: Thu, 05 Sep 2024 12:34:46 +0200
Subject: [PATCH] Update to Install Script

---
 AES-install.sh |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/AES-install.sh b/AES-install.sh
new file mode 100644
index 0000000..c8f1bdd
--- /dev/null
+++ b/AES-install.sh
@@ -0,0 +1,41 @@
+#!/bin/sh
+
+echo "Step one: requires admin rights and will reboot the system!"
+
+sudo -s
+
+#Install NVM
+curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
+
+export NVM_DIR="$HOME/.nvm"
+[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
+[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion
+
+
+Echo "Step 2 - please confirm the installations"
+
+nvm install 13
+
+apt install make
+apt install gcc
+apt install cmake
+apt install python3
+
+cd node-modules
+npm install audify 
+cd ..
+cd
+
+
+apt install unzip
+
+wget https://github.com/almoghamdani/audify/archive/refs/heads/master.zip
+mv master.zip audify.zip
+unzip audify.zip
+cd audify-master
+
+git clone https://github.com/teletype1/aes67-sender-enhanced.git
+cd aes67-sender-enhanced
+npm install
+
+node aes67 --help
\ No newline at end of file

--
Gitblit v1.9.1