2008-08-31 02:00:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd data/themes
|
|
|
|
|
2008-08-31 07:56:51 +00:00
|
|
|
for theme in *
|
2008-08-31 02:00:48 +00:00
|
|
|
do
|
2008-08-31 07:56:51 +00:00
|
|
|
if [[ ! -d "$theme" ]]
|
|
|
|
then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Compiling theme $theme"
|
|
|
|
|
|
|
|
cd $theme
|
|
|
|
data_path="../../themes_data/"$theme"/"
|
2008-08-31 02:00:48 +00:00
|
|
|
|
2008-08-31 07:56:51 +00:00
|
|
|
for filename in *.edc
|
|
|
|
do
|
|
|
|
/opt/e17/bin/edje_cc -id $data_path/images -fd $data_path/fonts $filename
|
|
|
|
done
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
done
|