summaryrefslogtreecommitdiff
path: root/update/musicnew.sh
blob: a9a6dd5747da83d7b3257bc0f9dceec0401157df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/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"