diff options
Diffstat (limited to 'update/musicnew.sh')
-rwxr-xr-x | update/musicnew.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/update/musicnew.sh b/update/musicnew.sh new file mode 100755 index 0000000..91a9f5e --- /dev/null +++ b/update/musicnew.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash + +# Copyright (C) 2011-2012 Evol Online +# Author: Andrei Karas (4144) + +dir=`pwd` +CC=${CC:=gcc} + +rm adler32 +$CC -lz adler32.c -o adler32 + +mkdir files +mkdir upload + +rm files/music.zip +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/ |