diff --git a/apps/Clam Antivirus/description b/apps/Clam Antivirus/description new file mode 100644 index 0000000..00f29de --- /dev/null +++ b/apps/Clam Antivirus/description @@ -0,0 +1,8 @@ +Open-source antivirus for your pi +Run with the command "clamscan" or go to Menu > Utility > ClamTK. + ∙ Open source + ∙ Install it, set a schedule and forget it + ∙ Scans your entire filesystem + ∙ Moves suspicious files to quaratine + ∙ Has a GUI to control it + diff --git a/apps/Clam Antivirus/icon-24.png b/apps/Clam Antivirus/icon-24.png new file mode 100644 index 0000000..00544e3 Binary files /dev/null and b/apps/Clam Antivirus/icon-24.png differ diff --git a/apps/Clam Antivirus/icon-64.png b/apps/Clam Antivirus/icon-64.png new file mode 100644 index 0000000..027e78e Binary files /dev/null and b/apps/Clam Antivirus/icon-64.png differ diff --git a/apps/Clam Antivirus/install b/apps/Clam Antivirus/install new file mode 100755 index 0000000..07be6b2 --- /dev/null +++ b/apps/Clam Antivirus/install @@ -0,0 +1,24 @@ +#!/bin/bash + +#ClamAV install script by RPN News + +#Define error function +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +function error { + echo -e "\\e[31m$1\\e[39m" + exit 1 +} + +# Get package clamav +# "${DIRECTORY}/pkg-install" "clamav" "$(dirname "$0")" || exit 1 + +wget https://bitbucket.org/davem_/clamtk-gtk3/downloads/clamtk_6.06-1_all.deb +sudo apt install clamtk_6.06-1_all.deb -y +sudo rm clamtk_6.06-1_all.deb + +if [ -f /usr/local/bin/twistver ];then + wget https://bitbucket.org/davem_/thunar-sendto-clamtk/downloads/thunar-sendto-clamtk_0.06-1_all.deb + sudo apt install thunar-sendto-clamtk_0.06-1_all.deb -y + sudo rm thunar-sendto-clamtk_0.06-1_all.deb +fi + diff --git a/apps/Clam Antivirus/uninstall b/apps/Clam Antivirus/uninstall new file mode 100755 index 0000000..0625dd1 --- /dev/null +++ b/apps/Clam Antivirus/uninstall @@ -0,0 +1,14 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +function error { + echo -e "\\e[31m$1\\e[39m" + exit 1 +} + +#if your app installs any packages, keep this command here so those packages will be removed. +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +if [ -f /usr/local/bin/twistver ];then + sudo apt purge thunar-sendto-clamtk -y +fi diff --git a/apps/Clam Antivirus/website b/apps/Clam Antivirus/website new file mode 100644 index 0000000..8bd4a4e --- /dev/null +++ b/apps/Clam Antivirus/website @@ -0,0 +1 @@ +https://www.clamav.net/