Add build script

This commit is contained in:
Sven Slootweg 2013-03-31 21:52:10 +02:00
parent 6b19e22e82
commit f95a28e717

9
build.sh Executable file
View file

@ -0,0 +1,9 @@
cd installer
echo "Copying needed files for SFX..."
mkdir src/
cp ../script/daemon.py src/
echo "Creating SFX..."
tar -czf - * | pysfx -as "python install.py" - ../pylsa_sfx.py
echo "Removing copied files..."
rm -rf src
cd ..