NTFS Progs 2.0 (x86_64)

This section is designed for your 'porteus build scripts' which create Porteus modules for your favorite applications. Scripts should work like the well-known 'SlackBuilds' with minimum user interaction.
User avatar
Hamza
Warlord
Warlord
Posts: 1908
Joined: 28 Dec 2010, 07:41
Distribution: Porteus
Location: France

NTFS Progs 2.0 (x86_64)

Post#1 by Hamza » 02 Feb 2011, 17:06

Script for NTFS Progs 2.0 (x86_64)

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
Enjoy !
NjVFQzY2Rg==

User avatar
Hamza
Warlord
Warlord
Posts: 1908
Joined: 28 Dec 2010, 07:41
Distribution: Porteus
Location: France

Re: NTFS Progs 2.0 (x86_64)

Post#2 by Hamza » 21 Jul 2011, 13:10

Updated for Porteus V1.0.
NjVFQzY2Rg==

Post Reply