Fixed installer.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@724 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
coppro
2007-09-21 03:30:31 +00:00
parent 838f433731
commit 67cb6120d5
2 changed files with 9 additions and 6 deletions
+7 -4
View File
@@ -1,10 +1,13 @@
#!/bin/bash
# Magic Set Editor installer tarball generator.
mkdir program
mkdir magicseteditor
mkdir magicseteditor/program
cp -rP ../../data ../../src/resource ../../magicseteditor program;
cp -rP ../../data /usr/local/share/magicseteditor/resource
../../magicseteditor magicseteditor/program;
cp install README magicseteditor;
tar -cf magicseteditor.tar.gz --owner root --exclude=.* --exclude=*~ --exclude=.svn program install README;
tar -cf magicseteditor.tar.gz --owner root --exclude=.* --exclude=*~ --exclude=.svn magicseteditor;
rm -rf program;
rm -rf magicseteditor;