blob: 70720d9dfbd348c1345a772de8fbcaf060846b8b (
plain) (
tree)
|
|
#!/usr/bin/env bash
# Copyright (C) 2011-2012 Evol Online
# Author: Andrei Karas (4144)
dir=`pwd`
rm adler32
gcc -lz adler32.c -o adler32
mkdir files
mkdir upload
rm files/music.zip
cd ../../music
find -iregex ".+[.]\(ogg\|mp3\)" -exec touch --date=2015-01-01 {} \;
find -iregex ".+[.]\(ogg\|mp3\)" -printf "%P\n" | zip -X -@ ../tools/update/files/music.zip
git log --pretty=oneline -n 1 | awk '{print $1}' >../tools/update/musiccommit.txt
cd $dir/files
sum=`adler32 music.zip | awk '{print $2}'`
echo " <update type=\"music\" required=\"no\" file=\"music.zip\" hash=\"${sum}\" description=\"TMW-2 music\" />" >> xml_footer.txt
cp xml_header.txt resources.xml
cat xml_footer.txt >>resources.xml
echo '</updates>' >>resources.xml
cp music.zip ../upload/
cp resources.xml ../upload/
cp ../news.txt ../upload/
|