summaryrefslogblamecommitdiff
path: root/update/musicnew.sh
blob: a9a6dd5747da83d7b3257bc0f9dceec0401157df (plain) (tree)
1
2
3
4
5
6
7
8
9





                                      
              
 
                        
 










                                     
 





                                                                                      
                         








                                                                                                                                   

                      
#!/usr/bin/env bash

# Copyright (C) 2011-2012  Evol Online
# Author: Andrei Karas (4144)

dir=`pwd`
tmp_path=$PATH

export PATH="$dir:$PATH"

if [[ ! -d "files" ]]; then
    mkdir -p files
fi

if [[ ! -d "upload" ]]; then
    mkdir -p upload
fi

if [[ ! -f "files/music.zip" ]]; then
    rm files/music.zip
fi

cd ../../music
find -iregex ".+[.]\(ogg\)" -exec touch --date=2015-01-01 {} \;
find -iregex ".+[.]\(ogg\)" -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 1 music.zip`

echo "    <update type=\"music\" required=\"no\" file=\"music.zip\" hash=\"${sum}\" description=\"TMW music\" />" >> xml_header.txt

cp xml_header.txt resources.xml
cat xml_footer.txt >>resources.xml

cp music.zip ../upload/
cp resources.xml ../upload/
cp ../news.txt ../upload/

export PATH="$tmp_path"