| Revision: | 1.8 |
| Committed: | Tue Sep 2 17:08:44 2008 UTC (18 years ago) by root |
| Branch: | MAIN |
| Changes since 1.7: | +1 -1 lines |
| Log Message: | *** empty log message *** |
| # | Content |
|---|---|
| 1 | #!/bin/sh |
| 2 | |
| 3 | ( |
| 4 | <MANIFEST grep -v ^resources/ | grep -v ^pod/ |
| 5 | echo |
| 6 | for theme in "" "/theme-plain" "/theme-blue"; do |
| 7 | base="resources$theme" |
| 8 | for file in \ |
| 9 | $base/*.png \ |
| 10 | $base/fonts/*.ttf \ |
| 11 | $base/music/*.ogg \ |
| 12 | $base/ui/resist/*.png \ |
| 13 | $base/pod/*.png \ |
| 14 | $base/pod/*.jpg \ |
| 15 | $base/arch/*.png |
| 16 | do |
| 17 | [ -e "$file" ] && echo "$file" |
| 18 | done |
| 19 | done |
| 20 | for file in \ |
| 21 | pod/*.pod |
| 22 | do |
| 23 | echo "$file" |
| 24 | done |
| 25 | ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST |
| 26 | |
| 27 |