Skip to content

Commit

Permalink
Add manpage during installation
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpclark committed Jan 9, 2018
1 parent 96911ac commit 5391bad
Showing 1 changed file with 47 additions and 41 deletions.
88 changes: 47 additions & 41 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,60 +3,66 @@
# Checking if Rust is installed
if [ `which rustc` ];
then
# Rust is installed
echo "Rust already installed"
# Rust is installed
echo "Rust already installed"
else
# Rust is not installed
# Ask for user consent before proceeding with installation
read -p "Rust is not installed. Do you want to install Rust now ? (necessary for Abrute) [y/n] " Rust_answer

if [ "$Rust_answer" == "y" ];
then
# User agreed, proceed with installation
curl https://sh.rustup.rs -sSf | sh -s -- --channel=nightly
else
# User refused, abort installation
exit 1
fi
# Rust is not installed
# Ask for user consent before proceeding with installation
read -p "Rust is not installed. Do you want to install Rust now ? (necessary for Abrute) [y/n] " Rust_answer

if [ "$Rust_answer" == "y" ];
then
# User agreed, proceed with installation
curl https://sh.rustup.rs -sSf | sh -s -- --channel=nightly
else
# User refused, abort installation
exit 1
fi
fi

# Checking if Aescrypt is installed
if [ -f /usr/bin/aescrypt ] && [ -f /usr/bin/aescrypt_keygen ];
then
# Aescrypt is already installed
echo "Aescrypt already installed"
# Aescrypt is already installed
echo "Aescrypt already installed"
else
# Aescrypt is not installed, proceed with installation
echo "Installing Aescrypt"
wget https://www.aescrypt.com/download/v3/linux/aescrypt-3.13.tgz
tar -xzf aescrypt-3.13.tgz
cd aescrypt-3.13/src
make && sudo make install
cd ../.. && rm -rf aescrypt-3.13 && rm aescrypt-3.13.tgz
echo "Aescrypt installed"
# Aescrypt is not installed, proceed with installation
echo "Installing Aescrypt"
wget https://www.aescrypt.com/download/v3/linux/aescrypt-3.13.tgz
tar -xzf aescrypt-3.13.tgz
cd aescrypt-3.13/src
make && sudo make install
cd ../.. && rm -rf aescrypt-3.13 && rm aescrypt-3.13.tgz
echo "Aescrypt installed"
fi

# Checking for the existence of source files
if [ -d src ] && [ -d .git ];
then
# The source files are already there. We can build and install Abrute.
cargo +nightly build --release
sudo cp target/release/abrute /usr/bin
# The source files are already there. We can build and install Abrute.
cargo +nightly build --release
sudo cp target/release/abrute /usr/bin

if [ -d /usr/local/share/man/man1 ];
then
sudo cp abrute.1 /usr/local/share/man/man1/
sudo mandb -pq
fi
else
# Downloading the source files
wget https://github.com/danielpclark/abrute/archive/master.zip
unzip master.zip
cd abrute-master
# Building and installing
bash -lc "cargo +nightly build --release"
sudo cp target/release/abrute /usr/bin

# Cleaning
cd ..
rm master.zip
rm -r abrute-master/
# Downloading the source files
wget https://github.com/danielpclark/abrute/archive/master.zip
unzip master.zip
cd abrute-master

# Building and installing
bash -lc "cargo +nightly build --release"
sudo cp target/release/abrute /usr/bin

# Cleaning
cd ..
rm master.zip
rm -r abrute-master/
fi

echo "Thank you for installing Abrute. Enjoy !"
echo "Thank you for installing Abrute. Enjoy!"

0 comments on commit 5391bad

Please sign in to comment.