A platform is an operating system family or device line upon which a Roguelike may be designed to be played on.
Common platforms are:
Roguelikes are usually made to be quite portable. Either if they use Curses (Ncurses on all unices, PDCurses on Windows) or tiles (SDL is used, which is avaliable on almost every platform) or even 3D (OpenGL is available pretty much everywhere).
There’s a new trend to develop for Java virtual machine. Using the JVM, your game will run on most platforms, but be warned: the experience isn’t always first-class, and sometimes a user will need to install the JVM in order to play. Sometimes, specific Java libraries for drawing or sound are used, some of which require additional native libs, thus effectively defeating the cross-platform features of the JVM.