0817c307dc
svn path=/nixos/trunk/; revision=7155
19 lines
426 B
Bash
19 lines
426 B
Bash
source $stdenv/setup
|
|
|
|
ensureDir $out
|
|
|
|
tar xvfj $theme -C $out
|
|
|
|
themeName=$(cd $out && ls)
|
|
|
|
for i in $out/$themeName/config/*.cfg; do
|
|
echo "converting $i"
|
|
# Rewrite /etc paths. Also, the file names
|
|
# config/bootsplash-<RES>.cfg should be <RES>.cfg.
|
|
sed "s^/etc/bootsplash/themes^$out^g" < $i > $out/$themeName/$(basename $i | sed 's^.*-^^')
|
|
done
|
|
|
|
rm $out/$themeName/config/*.cfg
|
|
|
|
ln -s $themeName $out/default
|