| 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 *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | #!/bin/sh |
| 2 | |||
| 3 | ( | ||
| 4 | root | 1.3 | <MANIFEST grep -v ^resources/ | grep -v ^pod/ |
| 5 | echo | ||
| 6 | root | 1.8 | for theme in "" "/theme-plain" "/theme-blue"; do |
| 7 | root | 1.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 | root | 1.2 | pod/*.pod |
| 22 | root | 1.1 | do |
| 23 | echo "$file" | ||
| 24 | done | ||
| 25 | root | 1.3 | ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST |
| 26 | root | 1.1 | |
| 27 |