2008-10-01 19:42:40 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
for theme in data/themes/*; do
|
|
|
|
if [ -d "$theme" ]; then
|
|
|
|
cd "$theme"
|
|
|
|
theme=`basename "$theme"`
|
|
|
|
echo "Compiling theme $theme"
|
|
|
|
data_path="../../themes_data/$theme"
|
|
|
|
for filename in *.edc; do
|
|
|
|
edje_cc \
|
|
|
|
-id "$data_path/images" \
|
|
|
|
-fd "$data_path/fonts" \
|
|
|
|
$filename
|
|
|
|
done
|
|
|
|
cd - > /dev/null
|
2008-08-31 07:56:51 +00:00
|
|
|
fi
|
|
|
|
done
|