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.2 by root, Sun Aug 13 02:43:22 2006 UTC vs.
Revision 1.10 by root, Wed Sep 3 12:50:43 2008 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines