ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/mkmanifest
(Generate patch)

Comparing deliantra/Deliantra-Client/mkmanifest (file contents):
Revision 1.3 by root, Sun Aug 13 03:22:15 2006 UTC vs.
Revision 1.11 by root, Sun Mar 29 22:28:12 2009 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines