ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/mkmanifest
Revision: 1.11
Committed: Sun Mar 29 22:28:12 2009 UTC (15 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-2_05, rel-2_04, rel-2_10, rel-2_11, HEAD
Changes since 1.10: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/sh
2
3 (
4 <MANIFEST grep -v ^resources/ | grep -v ^pod/
5 echo
6 for theme in "" "/theme-plain" "/theme-blue" "/theme-metal"; do
7 base="resources$theme"
8 for file in \
9 $base/theme.json \
10 $base/*.png \
11 $base/fonts/*.ttf \
12 $base/fonts/fonts.conf \
13 $base/music/*.ogg \
14 $base/ui/resist/*.png \
15 $base/pod/*.png \
16 $base/pod/*.jpg \
17 $base/arch/*.png
18 do
19 [ -e "$file" ] && echo "$file"
20 done
21 done
22 for file in \
23 pod/*.pod
24 do
25 echo "$file"
26 done
27 ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST
28
29