Added Linux tarball and install scripts, and a README file.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@411 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
coppro
2007-05-22 04:04:34 +00:00
parent 9c67a4fa78
commit 9762524025
3 changed files with 64 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# Magic Set Editor installer tarball generator.
mkdir program
cp -rP ../../data ../../src/resource ../../magicseteditor program;
tar -cf magicseteditor.tar.gz --owner root --exclude=.* --exclude=*~ --exclude=.svn program install README;
rm -rf program;