| Revision: | 1.11 |
| Committed: | Sun Mar 29 22:28:12 2009 UTC (17 years, 5 months 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 *** |
| # | 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.10 | for theme in "" "/theme-plain" "/theme-blue" "/theme-metal"; do |
| 7 | root | 1.7 | base="resources$theme" |
| 8 | for file in \ | ||
| 9 | root | 1.9 | $base/theme.json \ |
| 10 | root | 1.7 | $base/*.png \ |
| 11 | $base/fonts/*.ttf \ | ||
| 12 | root | 1.11 | $base/fonts/fonts.conf \ |
| 13 | root | 1.7 | $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 | root | 1.2 | pod/*.pod |
| 24 | root | 1.1 | do |
| 25 | echo "$file" | ||
| 26 | done | ||
| 27 | root | 1.3 | ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST |
| 28 | root | 1.1 | |
| 29 |