diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-17 22:19:43 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-17 22:19:43 +0000 |
| commit | 42f5cf229efa2b20c642c7c0d7a2f3cd98b9a890 (patch) | |
| tree | 7eb6d3b99cdff9ae13df36af2c27cc5137365fae /tarball-build.sh | |
| parent | 437da38a26548714e6e1640722148f0f9f601ccb (diff) | |
- dopisane scripty
git-svn-id: http://opensvn.csie.org/tuxanci_ng@25 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'tarball-build.sh')
| -rwxr-xr-x | tarball-build.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tarball-build.sh b/tarball-build.sh new file mode 100755 index 0000000..fcfb5c0 --- /dev/null +++ b/tarball-build.sh @@ -0,0 +1,30 @@ +#!/bin/sh + +rm -rf tuxanci_ng tuxanci_ng.tar tuxanci_ng.tar.bz2 + +mkdir tuxanci_ng +mkdir tuxanci_ng/image +mkdir tuxanci_ng/font +mkdir tuxanci_ng/arena +mkdir tuxanci_ng/data +mkdir tuxanci_ng/lang +mkdir tuxanci_ng/sound +mkdir tuxanci_ng/music +mkdir tuxanci_ng/include +mkdir tuxanci_ng/src + + +cp image/*.* tuxanci_ng/image +cp font/*.* tuxanci_ng/font +cp arena/*.* tuxanci_ng/arena +cp data/*.* tuxanci_ng/data +cp lang/*.* tuxanci_ng/lang +cp sound/*.* tuxanci_ng/sound +cp music/*.* tuxanci_ng/music +cp include/*.* tuxanci_ng/include +cp src/* tuxanci_ng/src +cp Makefile control deb-ver tuxanci_ng +cp *.sh tuxanci_ng + +tar -cvf tuxanci_ng.tar tuxanci_ng +bzip2 tuxanci_ng.tar |