Code: Select all
#!/bin/bash
# SRC = Source Link
# TMP = /tmp/$NAME folder
# TMP_SRC = /tmp/$NAME-src
SRC=http://slackware.cs.utah.edu/pub/slackware/slackware64-13.37/slackware64/ap/ntfsprogs-2.0.0-x86_64-2.txz
NAME='NTFS Progs'
F_NAME=ntfs_progs
TMP=/tmp/$F_NAME
TMP_SRC=/tmp/$F_NAME-src
F_1=$TMP_SRC/ntfsprogs-2.0.0-x86_64-2.txz
CPU=`uname -m`
CWD=`pwd`
F_LAST=$CWD/$F_NAME-$CPU.xzm
clear
echo "===============> PORTEUS <==============="
echo
echo "Welcome to $NAME Installer for Porteus"
echo "Press any key to start the installation"
read junk
clear
echo "Downloading...."
if [ -d $TMP ]; then rm -Rf $TMP
else
mkdir $TMP
fi
if [ -d $TMP_SRC ]; then rm -Rf $TMP_SRC
else
mkdir $TMP_SRC
fi
cd $TMP_SRC
wget $SRC
clear
if [ -e $F_1 ]; then
echo "Building the module..."
txz2xzm $F_1 $F_LAST
else
echo "Check your internet connection!"
echo "Build failed!"
fi
# Check if the file is compiled by mksquashfs
clear
if [ -e $F_LAST ]; then
echo "===============> PORTEUS <==============="
echo "Your module $NAME is ready!"
echo "Thanks to the Porteus Community!"
echo "-----------------------------------------"
echo "Your module is saved in $CWD folder"
echo "-----------------------------------------"
echo "Cleaning the system..."
else
clear
echo "Build failed !"
echo "Please report this bug to the Porteus Forum !"
echo "Cleaning the system"
rm -Rf $TMP
rm -Rf $TMP_SRC
fi
if [ -d $TMP ]; then rm -Rf $TMP
fi
if [ -d $TMP_SRC ]; then rm -Rf $TMP_SRC
fi