I see that golly comes with 3 different sizes of ico files.  When ico files are available and there aren't other suitable image files available then I use the program 'convert', which is part of ImageMagick, and change the ico files to a png.  You don't have too but I use png files a lot better then ico files.<br>
<br>Here is how I would convert the appicon*.ico files to png files.<br><br>for i in 16 32 48; do<br>  convert appicon${i}.ico -resize ${i}x${i}! $PRGNAM-${i}.png<br>  install -D -m 0644 $PRGNAM-${i}.png \<br>    $PKG/usr/share/icons/hicolor/${i}x${i}/apps/$PRGNAM.png<br>
done<br><br>Or, you could just use the appicon.xpm file and install it to /usr/share/pixmaps/golly.xpm.<br><br>Both work for xfce.<br><br>--Larry<br><br><div class="gmail_quote">On Mon, Dec 24, 2012 at 2:55 PM, Glenn Becker <span dir="ltr"><<a href="mailto:burningc@sdf.org" target="_blank">burningc@sdf.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Hi All --<br>
<br>
First, best holiday wishes to one and all! whatever holiday you are celebrating.<br>
<br>
I am putting together a SlackBuild for the cellular automata explorer (Conway's Game of Life and more) golly. There is already such a program in SlackBuilds (gtklife), but I like this one & besides, am trying to get better at package making.<br>

<br>
I've run into a little issue. The package builds, installs, and runs fine, but the program icon does not make it into the menu -- on xfce, anyway. I'm guessing the various "appicon*.ico" files in the top level of the program's source tree aren't being dealt with correctly, but I am not sure *what* I should be doing with them ... it seems like this is something that should be dealt with in a 'doinst.sh' script, but beyond that guess I am kind of stuck.<br>

<br>
I have been searching for a SlackBuild / doinst.sh that does something like slinging *.ico files into their proper homes, but so far have not found one.<br>
<br>
Can anyone suggest a resource or a place where I might look for direction on this?<br>
<br>
Thanks,<br>
<br>
Glenn<br>
<br>
+-----------------------------<u></u>----------------+<br>
Glenn Becker - <a href="mailto:burningc@sdf.org" target="_blank">burningc@sdf.org</a><br>
SDF Public Access UNIX System - <a href="http://sdf.org" target="_blank">http://sdf.org</a><br>
+-----------------------------<u></u>----------------+<br>
______________________________<u></u>_________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org" target="_blank">SlackBuilds-users@slackbuilds.<u></u>org</a><br>
<a href="http://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" target="_blank">http://lists.slackbuilds.org/<u></u>mailman/listinfo/slackbuilds-<u></u>users</a><br>
Archives - <a href="http://lists.slackbuilds.org/pipermail/slackbuilds-users/" target="_blank">http://lists.slackbuilds.org/<u></u>pipermail/slackbuilds-users/</a><br>
FAQ - <a href="http://slackbuilds.org/faq/" target="_blank">http://slackbuilds.org/faq/</a><br>
<br>
</blockquote></div><br>